JSFiddle - React, Tailwind, and code Playground

by mlms13

HTML

<div id="container">
    <div class="floater"></div>
    <div class="floater"></div>
    <div class="floater"></div>
    <div class="floater"></div>
</div>

CSS

#container {
    border: 1px solid black;
    overflow: visible; /* change to `auto` or `hidden` */
}

.floater {
    background: #156;
    float: left;
    height: 32px;
    margin: 6px;
    width: 40px;
}