JSFiddle - React, Tailwind, and code Playground
HTML
<div class="flexbox">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
CSS
.flexbox {
display: flex;
width: 30em;
height: 30em;
background-color: gold;
flex-wrap: wrap;
flex-direction: column;
}
.box {
margin-top: 2em;
margin-bottom: 2em;
height: 10em;
width: 10em;
border: 1px solid black;
background-color: lime;
}