JSFiddle - React, Tailwind, and code Playground

by DemonTut

HTML

<div class="con">
  <div></div>
  <div></div>
  <div></div>
</div>

SCSS

div.con {
  display: flex;
  justify-content: flex-start;

  div {
    flex: 1;
    border: 1px solid black;
    height: 50px;
    width: 10px;
  }
}