JSFiddle - React, Tailwind, and code Playground

by dannyj6

HTML

<div class="left-col">This is the left column</div>
<div class="right-col">This is the right column</div>

CSS

.left-col {
    float:left;
    width:300px;
    background-color:red;
}
.right-col {
    float:left;
    width:300px;
    background-color:green;
}