can the height of table rows be changed to 1 pixel

liunx

Guest
Hi,<br />
is it possible to alter the height of table rows to 1 pixel or 2 pixels or 3 pixels etc. It seems anything over the height of standard text is ok, but it wont go under that?<!--content-->Set the font-size smaller, or better in most cases, don't use tables.<br />
<br />
<table><br />
<tr><br />
<td style="height: 1px; font-size: 0px; padding: 0; color: #000; background-color: #f00;"></td><br />
</tr><br />
<tr><br />
<td>foo</td><br />
</tr><br />
</table><!--content-->
 
Back
Top