JSFiddle - React, Tailwind, and code Playground

by Slava Fomin II

HTML

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

CSS

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 80px;
  width: 500px;
  border: 1px solid black;
}

.item {
  width: 80px;
  height: 80px;
  background-color: deeppink;
}