JSFiddle - React, Tailwind, and code Playground

by Lucio Crusca

HTML

<div class="wr">
  <div class="b"></div>
  <div class="b"></div>
  <div class="b"></div>
  <div class="b"></div>
  <div class="b"></div>
</div>

CSS

.wr {
  min-width: 5rem;
  max-width: 5rem;
  width: 5rem;
  min-height: 1rem;
  max-height: 1rem;
  height: 1rem;
  border: 1px solid black;
}

.b {
  display: inline-block;
  min-width: 20%;
  max-width: 20%;
  min-height: 100%;
  background-color: red;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}