JSFiddle - React, Tailwind, and code Playground
by petran
HTML
<div class="cont">
<div class="col">
<div style="display:table-cell"> test <br/><br/> </div>
</div>
<div class="col">
col2
</div>
<div class="col">
col3
</div>
</div>
CSS
.cont {
width:500px;
height:500px;
background: #666666;
}
.col {
display:inline-block;
width: 30%;
}