
July 30th, 2001, 12:32 PM
|
|
Contributing User
|
|
Join Date: Apr 2001
Location: New York
Posts: 122
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
I assume you're experiencing the problem in Netscape which is far quirkier in it's CSS implementation than Explorer.
In my experience, Netscape does a very poor job "cascading" a style declaration from a table tag down to it's elements (<tr> and <td>). If this is what's causing your problem, the most direct solution is to assign your style class to the table cells directly rather than to the table as a whole:
<td class="innersheet">content....</td>
rather than
<table class="innersheet">
If I understand your problem correctly, this should fix it.
Good luck.
|