Previous Message
Next Message

New to CSS, need to ask a question

Sent by Theodore Serbinski on 7 September 2004 21:09


Stuart Felenstein wrote:
> I prefer to have my links plain which is a whole other
> story.  Anyone have a suggestion as to how I lose
> these ?

hi! to make all of your links plain, try this:

a{ text-decoration:none}

this will style all of them
exactly the same. if you want to style them individually use this order:

a:link {color:blue}
a:visited {color:purple}
a:hover {color:red}
a:focus {color:green}
a:active {color:yellow}

this will ensure the correct results, e.g. your hover style takes
precedence when needed, instead of some other style. hope that helps!

ted


______________________________________________________________________
css-discuss [EMAIL-REMOVED]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Previous Message
Next Message

Possibly related: