Hi zippow,
The height attribute of the table tag has never been part of the html standard but IE and Netscape supported it. It might be that in IE5.5 that support has been dropped.
Have you tried setting the height as a style attribute instead.
Code:
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="300" height="300">
<!-- Inner table -->
<table style="height: 100%" width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<!-- End of inner table -->
</td>
</tr>
</table>
I tried this in N6 and IE5 and it works ok but I haven't got IE5.5 installed.
Shane
Bookmarks