Forum Moderators: open
<TABLE BORDER width=100%>
<TR>
<TH COLSPAN=2>Head1</TH>
<TH COLSPAN=2>Head2</TH>
<TH COLSPAN=2>Head3</TH>
</TR>
<TR>
<TD colspan=4 rowspan=4>A</TD>
<TD colspan=2>B</TD>
</TR>
<TR>
<TD colspan=2>B</TD>
</TR>
<TR>
<TD colspan=2>B</TD>
</TR>
<TR>
<TD colspan=2>B</TD>
</TR>
</TABLE>
but now i can span the rows now with the following
"<TD colspan=4 rowspan=4 height=100>A</TD> "
Uhmm no you can't. Yes the height made your cell bigger, but that has nothing to do with spanning. Just remove the rowspan=4 and you will get the same result.
Also in your case you can remove the colspan=2 on the TH elements, and replace the colspan="4" with colspan="2".