JSFiddle - React, Tailwind, and code Playground

HTML

<div class="content">Content before</div>

<div class="box">First</div>
<div class="box">Second</div>
<div class="box">Third</div>
<div class="box">Fourth</div>

<div class="content">Content after</div>

CSS

.box {
    display: block;
    float: left;
    width: 80px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #f4faff;
    border: 1px solid #e0eeff;
    margin: 10px;
}

.content {
    text-align: center;
    background-color: #f5f5f5;
    clear: both;
}