[thelist] CSS not working in Netscape

Nemesis nemesis at nemesis1.f2o.org
Fri Sep 19 18:22:00 CDT 2003


Maisha Walker wrote:
> I have a site that's using CSS to create underlines on my active and hover
> links.
> 
> It works fine in IE but not in Netscape.  I'm using NS 5.5.
> 
> Other elements of the CSSs seem to work - like the font sizes and colors,
> just not the active and hover link underlines.
> 
> Here's the section of the CSS file where the link underlines are set:

Works fine in Netscape 6 & 7, moz,firebird.

What is NS5.5? Did you mean NN4.5? If it was Netscape 4.xx then it is 
not going to work because hover isn't supported.

Save a few bytes and use shorthand.

a:link,a:visited{
color:#003399;
text-decoration:none;
font:bold 12px arial;
}
a:hover,a:active{
color:#0033ff;
text-decoration:underline;
font:bold 12px arial;
}


HTH
Gary
-- 
The Nemesis Project
http://nemesis1.f2o.org
One Stop CSS



More information about the thelist mailing list