JSFiddle - React, Tailwind, and code Playground

by tylorkolbeck

HTML

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

CSS

.container {
    width:100%;
    height:200px;
    border:1px solid;
}
.left {
    width:auto;
    height:200px;
    background:red;
    overflow:hidden;
}
.right {
    height:200px;
    width:100px;
    background:blue;
    float:left;
}