In order to maintain the tables while using CSS for proper positioning with a strict doctype, I have come up with a design that perfectly meets my needs.
Take note of the <br>
tags in the last (bottom) <td>
cell. Despite the growth in this area, the data within the two other <td>
cells above it remains in their original position.
<table cellpadding="0" cellspacing="0" border="1" width="400" height="100%">
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" border="0" height="100%">
<tr>
<td valign="top">ds</td> <----- The position here is important
</tr>
<tr>
<td valign="bottom">ds</td> <----- The position here is important
</tr>
</table>
</td>
<td valign="top">ada adf ad<br><br><br><br><br><br><br><br><br></td>
</tr>
</table>