JSFiddle - React, Tailwind, and code Playground

by kkdaily

HTML

<div id="top"></div>
<div class="side"></div>
<div class="main"></div>

CSS

#top {
    width: 800px;
    height: 200px;
    background-color: blue;
}
.side {
    width: 200px;
    height: 400px;
    background-color: red;
    float: left;
}
.main {
    width: 600px;
    height: 400px;
    background-color: yellow;
    float: left;
}