Click to See Complete Forum and Search --> : More then one link color?


soulflycrx
12-11-2003, 05:57 PM
Can I set up my CSS script so I can use more then one style of link color?

This is what I have in my CSS script.



a:link {
color: #006699;
text-decoration: none
}

a:whitelink {
color: #FFFFFF;
text-decoration: none



Would this work? If so, how would I set up my HTML?
This is what I got, but its not working.


<p class="six"><a class="whitelink" href="../index.html">Back to Home</a></p>


Thanks in advance...

Paul Jr
12-11-2003, 06:48 PM
Peep this. (http://www.w3schools.com/css/css_pseudo_classes.asp)

soulflycrx
12-11-2003, 11:14 PM
Perfect! Thanks!

Paul Jr
12-11-2003, 11:17 PM
You're welcome. :)