How can I get the yellow table to stretch to 100% of the height of the brown in all browsers ?
It does in IE and FX, but not in Opera or Chrome.
<code>
<html>
<body>
<table width="100%">
<tr>
<td width="20%" bgColor="brown" align="middle">
<table height="100%" bgColor="yellow">
<tr>
<td valign="top">
<table>
<tr>
<td bgColor="pink">top</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="bottom">
<table>
<tr>
<td bgColor="cyan">bottom</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="80%" height=400 bgColor="magenta" align="left" valign="top">
</td>
</tr>
</table>
</body>
</html>
</code>
It does in IE and FX, but not in Opera or Chrome.
<code>
<html>
<body>
<table width="100%">
<tr>
<td width="20%" bgColor="brown" align="middle">
<table height="100%" bgColor="yellow">
<tr>
<td valign="top">
<table>
<tr>
<td bgColor="pink">top</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="bottom">
<table>
<tr>
<td bgColor="cyan">bottom</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="80%" height=400 bgColor="magenta" align="left" valign="top">
</td>
</tr>
</table>
</body>
</html>
</code>