Click to See Complete Forum and Search --> : can CSS show visited links?


PunkSktBrdr01
01-15-2004, 10:56 PM
I've been wondering about this for awhile, so please let me know. :)

Jona
01-15-2004, 11:18 PM
a:link {
color: #fff; /* White link */
}

a:visited {
color: #eee; /* Light-gray visited link*/
}

a:hover {
color: #0ff; /* Skyblue link on mouse over */
}


[J]ona

PunkSktBrdr01
01-15-2004, 11:20 PM
Thanks! I must have missed that at in the CSS specs... :)

Jona
01-15-2004, 11:21 PM
Originally posted by PunkSktBrdr01
Thanks! I must have missed that at in the CSS specs... :)

'Tis easy miss in those documents, indeed.

[J]ona