I have a table that looks like this :
In my browser the 2nd table cell is still about 1 pixel high even when there is nothing in it, this gives a thin white line between the 1st and the 3rd table cell. How can I completely hide this 2nd table cell ?
Thanks in advance,
Koen
Code:
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td bgcolor="#9999FF">
One
</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td bgcolor="#9999FF">
Two
</td>
</tr>
</table>
In my browser the 2nd table cell is still about 1 pixel high even when there is nothing in it, this gives a thin white line between the 1st and the 3rd table cell. How can I completely hide this 2nd table cell ?
Thanks in advance,
Koen