JSFiddle - React, Tailwind, and code Playground

by JThomas

HTML

<div id="header">Head</div>
<div style="background-color: blue;" class="col-layout col1">s</div>
<div style="background-color: red;" class="col-layout col2">s</div>
<div id="footer" class="clearfix">Footer</div>

CSS

.col-layout {
    float: left;
    box-sizing: border-box;
}

.col-layout.col1 {
    width: 33.3%;
}
.col-layout.col2 {
    width: 66.6%;
}
.col-layout.col3 {
    width: 100%;
}
.clearfix{
    clear: both;
}
}