JSFiddle - React, Tailwind, and code Playground
HTML
<div id="left">
IM ON THE LEFT
</div>
<div id="right">
THIS IS ON THE RIGHT
</div>
<div id="middle">
I AM IN THE MIDDLE
</div>
CSS
#left{
float:left;
position:relative;
width: 150px;
}
#middle{
display: block;
margin-left: auto;
margin-right: auto;
width: 150px;
position: relative;
}
#right{
float:right;
width: 150px;
position: relative;
}