
| The attribute <ROWSPAN> is used within the <TD> or <TH> tag to span two or more rows.
By typing this:
<TABLE BORDER=1>
<TR>
<TH ROWSPAN=2>
The<BR>First<BR>Four<BR>Numbers</TH>
<TD>1</TD>
<TD>2</TD>
</TR>
<TR>
<TD>3</TD>
<TD>4</TD>
</TR>
</TABLE>
|
Here's a second example
By typing this:
<TABLE BORDER=1>
<TR>
<TD>1</TD>
<TD ROWSPAN=2>
The<BR>First<BR>Four<BR>Numbers</TD>
<TD>2</TD>
</TR>
<TR>
<TD>3</TD>
<TD>4</TD>
</TR>
</TABLE>
|