JSFiddle - React, Tailwind, and code Playground

HTML

<x-table>
<x-tr><fieldset></fieldset><fieldset></fieldset></x-tr>
<x-tr><x-td style="background: red"></td></x-tr>
</x-table>

CSS

x-table { display: table; }
x-tr { display: table-row; }
x-td { display: table-cell; padding: 5px; }
fieldset { display: table-cell; margin: 30px; background: blue; }