nested-percent-height-table.html   [plain text]


<h3>Height:100% Problems</h3>

<p>In the example below, the inner table should be 300 pixels tall.  Instead the height:100% on the table
cell isn't honored.</p>

<table height="300" style="background-color:red" align=center cellpadding="0" cellspacing="0">
<tr><td style="background-color:blue">
  <table style="background-color:green" width=100% height="100%" border="0">
    <tr>
        <td>Inner table</td>
   </table>
</td></tr>
</table>
</div>