JSFiddle - React, Tailwind, and code Playground

by blineberry

HTML

<div class="right"></div>
<div class="left"></div>

CSS

div { 
    height: 100px; 
}

.left {
    background: green;
}

.right {
    background: red;
    width: 250px;
    float: right;
}