css a:hover color code example
Example 1: how to remove link blue color from a tag using css
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: css hover
.a:hover{background-color: black;}
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
.a:hover{background-color: black;}