[thelist] CSS not working in Netscape

Egor Kloos studio at dutchcelt.nl
Fri Sep 19 21:05:52 CDT 2003


Maisha,

> I have a site that's using CSS to create underlines on my active and 
> hover
> links.
> Other elements of the CSSs seem to work - like the font sizes and 
> colors,
> just not the active and hover link underlines.
>
This actually looks like an event order bug in CSS. I've come across 
this before. To prevent such issues I try to alter the order of the 
pseudo elements.

Your example shows:
a:link
a:visited
a:hover,a:active

Try this:
a:link
a:hover,a:active
a:visited

I'm not totally sure this would solve your problem, but it might work.

I hope this helps

Egor Kloos

http://www.dutchcelt.nl/



More information about the thelist mailing list