JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width:100%;"><div class="left">left div</div>
<div class="right">right div</div></div>
CSS
.left{
float:left;
background:green;
width:50%;
}
.right{
background:red;
width:200px;
float: left;
}