JSFiddle - React, Tailwind, and code Playground

by Liu David

HTML

<div class="outer">
    <div class="left">
    </div>
    <div class="right">
        <p>i'm right</p>
    </div>
</div>

CSS

.outer{
    overflow:auto;  
}

.left{
    background:black;
    width:50%;
    height:100px;
    float:left;
}

.right{
    background:red;
    float:right;
    width:50%;
}