JSFiddle - React, Tailwind, and code Playground

by Scott Kaye

HTML

<section class="outside">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</section>

SCSS

section.outside {
  background: red;
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  div {
    width: 90px;
    height: 90px;
    margin: 5px;
    background: lime;
  }
}