JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>
CSS
.container {
display:table;
border:1px solid #000;
}
.left {
display:table-cell;
width:100px;
height:100px;
background-color:green;
}
.right {
display:table-cell;
width:100px;
height:100px;
background-color:Blue;
}