how to use hover code example
Example 1: css hover
.a:hover{background-color: black;}
Example 2: hover in html
//Select and style a link when you mouse over it:
a:hover
{
background-color: yellow;
}
.a:hover{background-color: black;}
//Select and style a link when you mouse over it:
a:hover
{
background-color: yellow;
}