OK, I've yet to find a definitive answer as to why [tt]style="height:100%"[/tt] doesn't work on a table inside a cell to fill the height of the entire cell. In fact, everything I read seems to tell me it should. I'm trying to get Table1 and Table2 to be the same height. So here's my code:
I'm using IE6, and for all practical purposes could care less about other browsers. If someone has an answer or could point me to it, I would appreciate it.
Code:
<table style="width:100%">
<tr>
<td colspan="2">Testing</td>
</tr>
<tr>
<td style="width:200px">
<table id="Table1" style="border-right: green 5px solid; border-top: green 5px solid; border-left: green 5px solid; border-bottom: green 5px solid; height:100%; width:100%">
<tr>
<td>1</td>
<td>2</td>
</tr>
</table>
</td>
<td>
<table id="Table2" style="border-right: red 5px solid; border-top: red 5px solid; border-left: red 5px solid; border-bottom: red 5px solid; height:100%; width:100%">
<tr>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
</table>
</td>
</tr>
</table>