Click to See Complete Forum and Search --> : can the height of table rows be changed to 1 pixel


damon2003
11-20-2003, 08:03 AM
Hi,
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?

pyro
11-20-2003, 08:34 AM
Set the font-size smaller, or better in most cases, don't use tables.

<table>
<tr>
<td style="height: 1px; font-size: 0px; padding: 0; color: #000; background-color: #f00;"></td>
</tr>
<tr>
<td>foo</td>
</tr>
</table>