JSFiddle - React, Tailwind, and code Playground

by victorxpp

HTML

<div id="maincontainer">
    <div id="leftcolumn"></div>
 
    <div id="contentwrapper"></div>
</div>

CSS

#maincontainer {
    width:1000px;
    height: 100%;
    display:inline-block;
}
#leftcolumn {
    float:left;
    width: 100px;
    height:20px;
    background: blue;
}
#contentwrapper {
    float:right;
    width:700px;
    height: 20px;
    background-color: red;
}