JSFiddle - React, Tailwind, and code Playground
by afshinprofe
HTML
<div class="left_column"></div>
<div class="content"></div>
CSS
.left_column{
width:50%;
height:100px;
float:left;
background:red;
}
.content{
width:100px;
height:100px;
margin:auto;
position:relative;
background:blue;
}