Hi people
I've fruitlessly tried googling this question, so now I hope that some of you might be able to see what I need to do 
I am making a small web-page using a combination of CSS and tables (I'm sorry, but it's better than frames, right?
). I have a large table with three columns (only one row) as the main container of the page - with a menu to the left, the main content in the center, and some boxes to the right. You can see a very simple example on http://bozack.dk/div/test.php. You can also just see the code here:
Code:
<div align="center">
<table width="80%">
<tr>
<td width="120px" VALIGN="top">
<table width="100%">
<tr height="30px" ><td> 11 </td></tr>
<tr height="100px"><td> 12 </td></tr>
<tr ><td> 13 </td></tr>
</table>
</td>
<td>
<p>Lorem ipsum dolor sit amet, ...</p>
<p>Diam ut tempor, sed etiam ...</p>
<p>Tempus turpis cubilia vel quisque. ...</p>
<p>Mauris felis eros elementum, ...</p>
<p>Ut aenean, fringilla cursus nulla ...</p>
</td>
<td width="120px" VALIGN="top">
<table width="100%">
<tr height="80px" ><td> 31 </td></tr>
<tr height="140px"><td> 32 </td></tr>
<tr><td> 33 </td></tr>
</table>
</td>
</tr>
</table>
</div>
What I want to do is make the lower box in each of the two sides (marked 13 and 33) fill out the rest of the height. Kind of like having a attribute to the tables in the left and right sides.
I've tried with in the table, but it doesn't seem to do anything.
Can anyone help me?
Bookmarks