Thursday, December 9, 2010

CSS Reference: Underline Links on Hover

This code will remove all the underlines from links in their normal state and then underline links on hover. Don't forget to change the hex color code to be the custom color for your links.


a {
color: #d63721;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

No comments:

Post a Comment

Only comments in English will be considered. Thank you!