JSFiddle - React, Tailwind, and code Playground

HTML

<div id="header"></div>
<div id="container">
    <div id="first"></div>
    <div id="second"></div>
    <div id="clear"></div>
</div>

CSS

#header {
    width: 100%;
    background-color: red;
    height: 30px;
}

#container {
    width: 300px;
    background-color: #ffcc33;
    margin: auto;
}
#first {
    width: 50%;
    float: left;
    height: 300px;
        background-color: blue;
}
#second {
    width: 50%;
    float: left;
    height: 300px;
    background-color: green;
}
#clear {
    clear: both;
}