JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div>test a</div>
<div>test b</div>
<div>test c</div>
</div>
CSS
div.wrapper {
border: 1px solid #000;
display: table;
width: 500px;
}
div.wrapper div {
border: 1px solid #f00;
display: table-cell;
width: 33%;
}