Row spans are used within the TABLE DATA tag (<td>) It allows you to span across a row.
cell | cell | |
cell | cell |
There is an image in the first cell. It spans down 2 rows! Take a look at it's code:
<table align="center" border="1" width="65%">
<tr>
<td rowspan="2"><img src="images/logo.gif"></td>
<td>cell</td>
<td>cell</td>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
</tr>
</table>