Forum Moderators: open
<TABLE BORDER="1">
<TR>
<TD>1</TD>
<TD ROWSPAN="2">2<BR>2.5</TD>
</TR>
<TR>
<TD ROWSPAN="2">3<BR>3.5</TD>
</TR>
<TR>
<TD>4</TD>
</TR>
</TABLE>
but I want the cell number 1 to be just the height of the text filling it, and the same for cell number 4. I thought this layout would automatically work like that but it doesn't. I'm using IE6.
All assistance gratefully received... :)
<TABLE BORDER="1" cellspacing="0" cellpadding="0">
<TR>
<TD VALIGN="?">1</TD>
<TD height="20" width="0"></TD>
<TD ROWSPAN="2">2<BR>2.5</TD>
</TR>
<TR>
<TD ROWSPAN="2">3<BR>3.5</TD>
<TD height="20" width="0"></TD>
</TR>
<TR>
<TD height="20" width="0"></TD>
<TD VALIGN="?">4</TD>
</TR>
I haven't worked out why this works if the TD height is set to 20 but it doesn't work if it's set to 5.