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.
BY Best Interview Question ON 13 Jan 2019
Example
a:hover{
background-color: yellow;
}