JSFiddle - React, Tailwind, and code Playground

by blineberry

HTML

<div id="container">
    <div class="left"></div>
    <div class="right"></div>
</div>

CSS

#container {
    width: 100%;
    position: relative;
}

#container div { 
    height: 100px; 
}

.left {
    background: green;
    position: absolute;
    top: 0;
    left: 0;
    right: 250px;
}

.right {
    position: absolute;
    background: red;
    width: 250px;
    top: 0;
    right: 0;
}