Hi, 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 it does not allow me to do it.
Is there a way arround? Or do I have to remove the thead and tbody to be able to use rowspan?
Thanks in advance.