What is hover effect in css? How we can apply on tags?
It select and style a link when you mouse over it. An :hover
is used to select elements when you mouse over them.
Example
a:hover{
background-color: yellow;
}