JSFiddle - React, Tailwind, and code Playground

by James Doyle

HTML

<div class="box red"></div>
<div class="box green"></div>
<div class="box blue"></div>
<br clear="all"/>
<p>Choose red to continue</p>

CSS

.box {
    float: left;
    margin: 5px;
    height: 50px;
    width: 50px;
}
.red {
    background: red;
}
.green {
    background: green;
}
.blue {
    background: blue;
}