Rowspan

liunx

Guest
Basic question, but have looked at the code too long and can no longer make sense of it.<br />
<br />
Row 1:[===Cell A===========]<br />
ROW 2:[Col 1][====Col 2====]<br />
<br />
ROW 2:Col 1 Must rowspan 2 cells stacked on top of each other in Col 2.<br />
<br />
Make sense? What should the code look like?<br />
<br />
Gandalf<br />
:D<!--content-->This way?<br />
<table width="100%" border="1" cellspacing="2" cellpadding="2" bordercolor="#800040" align="center"><br />
<tr><br />
<!-- Row 1 Column 1 --><br />
<td colspan=2><br />
1<br />
</td><br />
<!-- Row 1 Column 2 --><br />
<br />
</tr><br />
<tr><br />
<!-- Row 2 Column 1 --><br />
<td rowspan=2><br />
3<br />
</td><br />
<!-- Row 2 Column 2 --><br />
<td ><br />
4<br />
</td><br />
</tr><br />
<tr><br />
<!-- Row 3 Column 1 --><br />
<br />
<!-- Row 3 Column 2 --><br />
<td ><br />
6<br />
</td><br />
</tr><br />
</table><br />
<br />
:cool:<!--content-->
 
Back
Top