gavin long wrote:
> David Tenser wrote:
>> That's what I'm trying to ask. On my Mozilla, it underlines words
>> starting and ending with _underscores_ ... My question is where that is
>> specified! Are there any CSS file that holds these formatting rules?
>
> I don't know, but this page : http://www.hmetzger.de/net6e.html tells
> you how to turn it on & off (tips 13 & 20)
Mozilla uses a different way though.
It's
span.moz-txt-underscore {
text-decoration: underline;
}
in Mozilla.
On my page I just use
.moz-txt-underscore {
text-decoration:underline;
}
So to disable it, the following line should be added to userContent.css:
span.moz-txt-underscore {
text-decoration: none;
}
--
Holger Metzger
Netscape 6 Tips: http://www.hmetzger.de/netscape6.html