JSFiddle - React, Tailwind, and code Playground

by GeekyEggo

HTML

<div>1</div>
<div class="extra-height">2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>

CSS

body > div:nth-child(4n+1) {
   clear: both;
}
div
{
    background: #000;
    color: #fff;
    float: left;
    font: 40px Tahoma, Verdana, Sans-Serif;
    height: 100px;
    margin: 10px;
    padding: 30px 0 0;
    text-align: center;
    width: 100px;
}
div.extra-height
{
    height: 150px;
}