|
Changing link color and hover with CSS
A:link { text-decoration: value; color: color;}
text-decoration : underline, overline, underline overline,
line-through, blink, none
A:visited { text-decoration: value; color: color;} A:active { text-decoration: value; color: color;} A:hover { text-decoration: value; color: color;} cursor : you can add this and change the cursor when it is mouse over a link. Value: wait, crosshair, hand, help, text, move, resize (also can point in any direction you want with these: s-resize, e-resize, w-resize, ne-resize, nw-resize, se-resize, sw-resize) Please check our links page in the HTML section for more information on links and samples of cursors and text-decoration. You can add other stuff like font-family, font-weight and other stuff, check below under fonts for more information. |