I have a table with 100% of height. This table has 3 rows. The first and the third rows with 100 pixels of height. So, fixed height rows. Inside of the second row, another table. And I'd like this table to be also 100% of height, calculating automatically the space of the height. Yes, in my CSS, the HTML and BODY has height: 100%, margin: 0px and padding: 0px. Like this:
<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>
In IE and Chrome the heights are totally wrong... How can I resolve this?