Forum Moderators: not2easy
I easily fixed this by applying the style to the cell instead of the row. I'm just curious if anyone has come across this problem before.
Here's my css:
tr.drk td {background: url(styleimg/drkblue.gif); color: #eee; }
tr.med td {background: url(styleimg/medblue.gif); color: #eee; }
td {background: url(styleimg/ltblue.gif);}
HTML:
<table>
<tr class="drk">
<td>text</td>
<td>text</td>
<td>text</td>
<td>text</td>
<td>text</td>
<td>text</td>
</tr>
</table>
Do you see a typo that may create this problem or is my browser just smoking crack?
tr.drk td {background: url(styleimg/drkblue.gif); color: #eee; border: none;}
tr.med td {background: url(styleimg/medblue.gif); color: #eee; border: none;}
td {background: url(styleimg/ltblue.gif); border: none;}
I always thought borders did more harm than good. Until now, I've always automatically hidden them from NN4. Maybe I should investigate further on some old stylesheet's I've done.
I know setting the border attribute to none on images in NN4 creates a big gap. I thought this might be the case with tables too...