JSFiddle - React, Tailwind, and code Playground

by inser

HTML

<div class='table'>
    <div class='row'>Row</div>
    <div class='cell'>Cell</div>
</div>

CSS

.table {
    display: table;    
}
.row {
    display: table-row;
}

.cell {
    display: table-cell;
}