JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width:100px;height:100px;"></div>
<div style="width:100px;height:120px;"></div>
<div style="width:100px;height:150px;"></div>
<div style="width:100px;height:130px;"></div>
<div style="width:100px;height:100px;"></div>
<div style="width:100px;height:120px;"></div>
<div style="width:100px;height:140px;"></div>
<div style="width:100px;height:90px;"></div>
<div style="width:100px;height:100px;"></div>
CSS
div {
border:1px solid black;
float:left;
margin:10px;
display:inline-block;
}
body {
-moz-column-width: 100px;
-webkit-column-width: 100px;
column-width: 100px;
}