JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
HTML
<div class='flex'>
<div class='box'>
</div>
<div class='box'>
</div>
</div>
CSS
.flex {
display: flex;
background: red;
height: 100px;
width: 100%;
}
.box {
background: #eee;
border-right: 1px solid green;
height: 100%;
}