JSFiddle - React, Tailwind, and code Playground

by George Batt

HTML

<div id="wrap">
    <div id="header"></div>
    <div class="left"></div>
    <div class="right"></div>
    <div id="footer"></div>
</div>

CSS

#wrap{
    width: 500px;    
}

#header {
    border-radius: 5px;
    height: 60px;
    background-color: red;
    z-index: 1;
}

.left {
    border-radius: 5px;
    height: 500px;
    width: 70px;
    background-color: blue;
    float: left;
}

.right {
    border-radius: 5px;
    height: 500px;
    width: 430px;
    background-color: black;
    float: right;
    position: relative;

}

#footer {
    border-radius: 5px;
    height: 60px;
    background-color: red;
    clear: both;
}