Forum Moderators: not2easy
<h1>Table Test 2</h1>
<table class='outer'>
<tr>
<td>
<table class="inner" height="100%">
<tr>
<td>inner-table row 1 cell 1</td>
<td>inner-table row 1 cell 2</td>
</tr>
</table>
</td>
<td height="200px">Second Cell which is 200px high</td>
</tr>
<tr>
<td width="400px">Third Cell which is 400px wide</td>
<td>Fourth Cell</td>
</tr>
</table> table.outer {
border-style: solid;
border-width: 5px;
border-color: red;
border-spacing: 0px;
border-collapse: separate;
padding: 0px;
}
table.outer td {
border-style: solid;
border-width: 1px;
border-color: black
}
table.inner {
width: 100%;
height: 100%; /* this has no effect */
border-style: solid;
border-width: 5px;
border-color: green;
border-spacing: 0px;
border-collapse: separate;
padding: 0px;
}