
June 21st, 2003, 08:42 AM
|
 |
|<.+#f@#+.&.|
|
|
Join Date: Mar 2002
Location: norway
|
|
|
with css your problem isn't with mozilla /NS6+ , (assuming you mean netscape 6.+ when you say NS), it has far superior support for css than what ie has.
and you don't have to place class to every single tag
you can refer directly to each tag,
like
p {
font-family:sans-serif;
}
td {
background:#222222;
color:#b9b9b9;
}
etc..
if you want just to control the td within one
table you can refer to them like
.foobar td {
font-weight:700;
}
in html
<table class="foobar">
|