JSFiddle - React, Tailwind, and code Playground

by chovy

HTML

<div class="pinterest">
    <div style="height: 50px"></div>
    <div style="height: 60px"></div>
    <div style="height: 40px"></div>
    <div style="height: 80px"></div>
    <div style="height: 60px"></div>
    <div style="height: 40px"></div>
    <div style="height: 70px"></div>
    <div style="height: 90px"></div>
    <div style="height: 40px"></div>
    <div style="height: 80px"></div>
    <div style="height: 40px"></div>
    <div style="height: 70px"></div>
    <div style="height: 50px"></div>
    <div style="height: 60px"></div>
    <div style="height: 60px"></div>
    <div style="height: 90px"></div>
</div>

CSS

div.pinterest {
    width: 400px;
    -moz-column-count: 4;
    -moz-column-gap: 0;
    -webkit-column-count: 3;
    -webkit-column-gap: 0;
    column-count: 3;
    column-gap: 0;
}
div.pinterest > div {
    display: inline-block;
    vertical-align: top;
    width: 98px;
    border: solid 1px gray;
}