JSFiddle - React, Tailwind, and code Playground

by shimmy

HTML

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

CSS

.container {
    position: absolute;
    background: gray;    
    height: 300px;
    width: 100%;
}
.container > div {
    height: 100px;
    width: 100px;    
    position: relative;
}
div.left {
    background: green;
    height: 250px;
    float: left;
}
div.middle {
    background: red;
    float: left;    
}
div.right {
    background: blue;
    float: right;    
}