JSFiddle - React, Tailwind, and code Playground

by Valentin Sarychev

HTML

<div class="main">
  <div>
    Hello
  </div>
    <div>
    Hello
  </div>
  
  <div class="flex">
    <div class="item">

    </div>
    <div class="item">

    </div>
  </div>
</div>

CSS

.main {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.flex {
  display: flex;
  flex-flow: column wrap;
}

.item {
  height: 40px;
  background: red;
  border: 2px solid #000;
}