|
RowspanThe Rowspan is very similar to the colspan except that it is rows instead of columns. Basically it allows you to have rows stretch over columns unlike colspan which allows you to have columns stretch over rows. Below is an example:
<table border="1">
<tr>
<tr>
<tr>
</table>
As you can see above, the row stretched over the 3 columns. You can have the row to stretch over how ever many columns you have or want by changing the number in the rowspan="". We will now show you the code in the <td> tag:
<td rowspan="number">
|