Looking to design an HTML layout inspired by the classic Japanese tatami mat pattern.
https://i.sstatic.net/vLUtp.png
Experimented with using rowspan and colspan in a table layout, making progress until the final colspan caused things to collapse.
td {
border: 1px solid black;
}
<table>
<tbody>
<tr>
<td rowspan="2"></td>
<td colspan="2"></td>
<td colspan="2"></td>
<td rowspan="2"></td>
</tr>
<tr>
<td rowspan="2"></td>
<td colspan="2"></td>
<td rowspan="2"></td>
</tr>
<tr>
<td rowspan="2"></td>
<td></td>
<td></td>
<td rowspan="2"></td>
</tr>
<tr>
<td colspan="2"></td>
<td colspan="2"></td>
</tr>
</tbody>
</table>
Interested in exploring more flexible layout options beyond tables.