I am trying to use rowspan in a table with thead and tbody ex.
<table>
<thead>
<tr>
<td rowspan="2">test</td>
<td>Initials</td>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
</tr>
</tbody>
But that does not allow me to do this.
Is there an arround way? Or do I need to remove thead and tbody in order to be able to use rowspan?
Thanks in advance.
source
share