JSFiddle - React, Tailwind, and code Playground

by Lazaro Contreras

HTML

<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
<div class="box">4</div>

CSS

.box {
  display: inline-flex;
flex-flow: column wrap;
  width: 200px;
  height: 200px;
  border: 1px solid black;
  border-radius: 2px;
}