I'll try to explain this the best I can.
In this example of code We have two rows in the second column:
Code:
<table width="500">
<tr>
<td rowspan="2">1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
</tr>
</table>
How do I keep the top of the 3rd cell snug under the content contained withing the 2nd cell when the content of cell 2 is stretched beyond the height of cells 2 and 3 combined?
I have to do this without setting cell heights. My page code on the project I am working on is much more complex than thios but this is the easiest way to get my question across.
Thanks muchly!