JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td colspan="2">Header</td>
</tr>
<tr>
<td>Sidebar 1</td>
<td rowspan=2>Content</td>
</tr>
<tr>
<td>Sidebar 2</td>
</tr>
</table>
CSS
td { padding: 20px; border: 1px solid #ccc; }