Here's a simple example to illustrate my question. Say you have this table...
Notice the rowspan=2 on the "text2" table. My only question is, how can you keep the text3 table cell to stay under the text1 table cell? They are both "valign=top", but if you shrink the table via browser resize, then the text1 and text3 both simply use 50% height. I want text3 to stay under text1 completely. Obviously, this is for a larger problem, but the simply table above illustrates the same thing. Thank you!
Code:
<table border=1>
<tr>
<td valign=top>text1</td>
<td rowspan=2>text2 text2 text2 text2 text2 text2 text2 text2 text2 text2 text2 text2 text2 text2 text 2 text2 text2 text2 text2 text2 text2 text2</td>
</tr>
<tr>
<td valign=top>text3</td>
</tr>
</table>
Notice the rowspan=2 on the "text2" table. My only question is, how can you keep the text3 table cell to stay under the text1 table cell? They are both "valign=top", but if you shrink the table via browser resize, then the text1 and text3 both simply use 50% height. I want text3 to stay under text1 completely. Obviously, this is for a larger problem, but the simply table above illustrates the same thing. Thank you!