JSFiddle - React, Tailwind, and code Playground

by Emily Humphrey

HTML

<div>
    <span style="height: 50px;"></span>
    <span style="height: 70px;"></span>
    <span style="height: 50px;"></span>
    <span style="height: 20px;"></span>
    <span style="height: 80px;"></span>
    <span style="height: 50px;"></span>
    <span style="height: 50px;"></span>
    <span style="height: 50px;"></span>
    <span style="height: 50px;"></span>
</div>

CSS

div {
    width: 200px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 0;
}

span{
    display: inline-block;
    width: 50px;
    background: grey;
    margin-bottom: 10px;
}