vote up 0 vote down star

How can I change the colour of hyperlinks to white in HTML and CSS?

flag
Could you consider rephrasing the question to reflect exactly what it is you're after? For example, "How do I make a link white when a user moves their mouse over?" – David Grant Feb 9 at 13:49
It would be nice for people to assume good faith, this may well be a simple question and perhaps the author's primarly language isn't English. I'm not surprised at the downvotes, but someone actually felt this question offends them? Seriously, that's disappointing. – Ross Feb 9 at 14:06
I really hope you're not going for white-on-white in order to hide links. That would be a bad idea. – Ryan Emerle Feb 9 at 14:08
@Ross: I'm not sure where the offence came from either, but I can understand the down-votes: the author rolled back several attempts to make the post into a question, which makes it less useful for the community. – David Grant Feb 9 at 14:47

4 Answers

vote up 7 vote down

You use CSS

a
{
    color: #ffffff;
}

Anchor Pseudo-classes: http://www.w3schools.com/CSS/css_pseudo_classes.asp

link|flag
vote up 14 vote down

Use the color CSS property.

a { color: white; }

Problem is, visited links may not be shown as white as well. You may need to add extra rules:

a, a:hover, a:active, a:visited { color: white; }
link|flag
vote up 2 vote down

just guessing, you may be looking for these as well:

a:link
{
    color:#FFFFFF;
}

a:visited
{
    color:#FFFFFF;
}

a:hover 
{
    color:#FFFFFF;
}
link|flag
THATS BLACK!@?!##?@$ – Diddytheboss Feb 9 at 13:42
Ohh!! then just replace them with #FFFFFF. You will get the white color. However, it was just an example@?!##?@$. – Sachin Gaur Feb 9 at 13:53
black is the new white. – Ólafur Waage Feb 9 at 14:02
vote up 3 vote down
a { color: #fff; }

in your css file. I will add that if you're doing it to try and hide many white links on a white background of a page it is a very bad idea.

link|flag

Your Answer

Get an OpenID
or

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