Which HTML attribute would be used to span a table cell over more than one row? * code example
Example: html table span 2 rows
<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>