Answers for "css ahover text color"

CSS
3

how to remove link blue color from a tag using css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Posted by: Guest on June-18-2020
-1

how to chane text color when hover in css

CSS
.link { color: #FF0000; } /* CSS link color (red) */
.link:hover { color: #00FF00; } /* CSS link hover (green) */
Posted by: Guest on June-04-2020

Browse Popular Code Answers by Language