JSFiddle - React, Tailwind, and code Playground
by lupos
HTML
<div class="wrapper">
<div class="left">LEFT</div>
<div class="right">RIGHT</div>
</div>
CSS
.wrapper{
width: 100%;
}
.left{
float: left;
width: 100%;
margin-right: -200px;
}
.right {
float: right;
width: 200px;
}