Name | Topic | Used in | Type |
---|---|---|---|
rowspan | ![]() |
th | ![]() |
The row-span (how many units of the table grid a cell covers).
Sample:
<table>
<tr>
<th rowspan="2">Hello world</td>
<td>Hello</td>
</tr>
<tr>
<td>World</td>
</tr>
</table>