我有一张高度为 100% 的桌子。该表有 3 行。第一行和第三行高度为 100 像素。所以,固定高度的行。在第二行里面,还有一张桌子。而且我希望这张桌子也是高度的 100%,自动计算高度的空间。是的,在我的 CSS 中,HTML 和 BODY 的高度:100%,边距:0px 和填充:0px。像这样:
<table border=0 cellpadding=0 cellspacing=0 width=100% style="height: 100%;">
<tr>
<td height=100>Header</td>
</tr>
<tr>
<td style="height: 100%;">
<table border=01 cellpadding=0 cellspacing=0 width=90% style="height: auto;">
<tr>
<td style="height: 50px;">Inside 1</td>
</tr>
<tr>
<td style="height: 100%;">Inside 2</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height=100>Footer</td>
</tr>
</table>
在 IE 和 Chrome 中,高度完全错误......我该如何解决这个问题?