JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <div class="item">111</div>
  <div class="item">222</div>
  <div class="item">333</div>
  <div class="item">444</div>
</div>

CSS

.container{
  position: absolute;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  max-height: 100px;
  background-color: green;
  padding: 10px;
}
.item{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  background-color: red;
}