JSFiddle - React, Tailwind, and code Playground

by rmitchellnet

HTML

<div id="container">

<div id="left">im in yo space!</div>

<div id="right">take up the rest o this ish</div>

</div>

CSS

div {
    color: white; 
}

#container {
    width: 500px;
    background: blue;
}

#left {
    width: 100px;
    background: red;
    float: left;
    height: 100px;
}

#right {
    width: auto;
    background: green;
    height: 300px;
    overflow: hidden;
}