vote up 3 vote down star
1

How can I make a link in HTML turn a color when hovering and remove the underline using CSS?

flag
@Strager: That was not a better edit. – Rich B Feb 10 at 15:04
@Rich B, ah, it seems you edited the post while I was editing it, thus my edit overwrote yours. Sorry. – strager Feb 10 at 15:06
@strager: Not possible, as you were editing my revision, not the original post. But whatever. – Rich B Feb 10 at 15:08
@Rich B, I don't believe that was the case. But whatever. ;P – strager Feb 10 at 15:09
@Rich B, I clicked to edit based off revision 1. Then, you clicked to edit, then posted your edit. Then, I posted mine. SO merged our edits, it seems; I did not have a chance to see yours (nor did I notice it). – strager Feb 10 at 15:14
show 2 more comments

2 Answers

vote up 18 vote down check

You want to look at the :hover pseudoselector, the color property, and the text-decoration property.

a:hover { color: red; text-decoration: none; }

To assure your hyperlink is styled as you want (and does not conflict with other style rules), use !important:

a:hover { color: red !important; text-decoration: none !important; }
link|flag
Ah yes, important is a good idea. – Pim Jager Feb 10 at 15:46
Also note that IE6 (possibly 7, not sure) ignores !important – Pim Jager Feb 10 at 15:47
vote up 7 vote down

Also in addition to stragers answer, make sure to declare the pseudo classes in the LoVe HAte way. You have to declare :link first, then :visited, then :hover and then :active. Otherwise some browsers may not apply the pseudo classes.

a:link{
 /*this only apllies to named anchors*/
}
a:visited{
 /*possible styles for visited links*/
}
a:hover{
 /*when mouse hovers over a-tag*/
 text-decoration:none;
 color:red;
}
a:active{
 /*possible styles on active (when a-tag is clicked)*/
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.