Answers for "css color on hover"

CSS
-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
0

css hover animation

a:hover {
  color: #252525;
}
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language