JSFiddle - React, Tailwind, and code Playground

by wwt

HTML

<div class="table">
    <div class="row">
        <div class="cell">первая колонка</div>
        <div class="cell">вторая колонка</div>
        <div class="cell">третья колонка</div>
    </div>
</div>

CSS

.table {
    border-spacing: 5px;
    display: table;
}
.row {
    display: table-row;
}
.cell {
    width: 100px;
    height: 100px;
    background: green;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}