I'm having trouble sizing the cells of my table right. The table should have three columns. The first and third columns are sidebars that should each have a cell just tall enough for one line of text, and an expandable-height cell below it. The central column is the body and will just have one cell that spans the two rows.
The problem I'm having is that as the body grows, the Sidebar titles keep expanding. I want them to stay one line high and have the sidebar contents expand.
<table width=100%>
<tr>
<td width=20%>Sidebar1</td>
<td rowspan=2 width=*>
Body<br><br><br>
Body<br><br><br>
Body<br><br><br>
</td>
<td width=20%>Sidebar2</td>
</tr>
<tr>
<td>Sidebar1<br>Contents</td>
<td>Sidebar2<br>Contents</td>
</tr>
</table>
The problem I'm having is that as the body grows, the Sidebar titles keep expanding. I want them to stay one line high and have the sidebar contents expand.
<table width=100%>
<tr>
<td width=20%>Sidebar1</td>
<td rowspan=2 width=*>
Body<br><br><br>
Body<br><br><br>
Body<br><br><br>
</td>
<td width=20%>Sidebar2</td>
</tr>
<tr>
<td>Sidebar1<br>Contents</td>
<td>Sidebar2<br>Contents</td>
</tr>
</table>