JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="common">
lorem ipusm random text just for check
</div>
<div class="common">
lorem ipusm random text just for check lorem ipusm random text just for check
</div>
</div>
CSS
.container{
display:table;
border: solid 1px green;
width: 200px;
}
.common{
display:table-cell;
border:1px solid red;
margin-left:5px;
width:20%;
height:100%;
padding:5px;
}