JSFiddle - React, Tailwind, and code Playground

by piotr_cz

HTML

<!-- IE testing cut bottom -->

<div id="hpwrap">
    <div class="box">box</div>
     <div class="box">box</div>
</div>

CSS

#hpwrap {
    background: green;
    overflow: hidden;
}

.box {
    float: left;
    width: 100px;
    height: 100px;
    margin: 8px 0 8px 13px;
    background: red;
    zoom: 1;
}