If you want to change the color of a link to red when moving mouse pointer on top of it, which CSS property you need to change?
Answer options
A
True
B
False
Correct answer: True
Explanation
To change a link's color when hovering, modify the CSS 'color' property. This can be done via the CSS :hover pseudo-class or dynamically using jQuery's .css('color', 'red') in a hover event.