IE6 table cell display

  • Thread starter Thread starter ThInKeR
  • Start date Start date
T

ThInKeR

someone knows why an simple html table code like:
<td style="height: 10px; vertical-align: top;">&nbsp; </td>

does *not* show the correct cell height in IE6? (1 column table)


workaround?

Steve
 
while 80px and 40px are OK - 20px and 10px are crap

example:
<html>
<head>
<title>My Page!</title>

</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<table border="1" bordercolor="" width="80px" bgcolor="">
<tr>
<td style="height: 80px;"> 80px</td>
</tr>
<tr>
<td style="height: 40px;"> 40px</td>
</tr>
<tr>
<td> row 3</td>
</tr>
<tr>
<td style="height: 20px; vertical-align: top;">&nbsp;</td>
</tr>
<tr>
<td> row 5</td>
</tr>
<tr>
<td> row 6</td>
</tr>
<tr>
<td style="height: 10px; vertical-align: top;">&nbsp;</td>
</tr>
<tr>
<td> row 8</td>
</tr>
<tr>
<td> row 9</td>
</tr>
</table>
</body>
</html>
 
Back
Top