JSFiddle - React, Tailwind, and code Playground

by Guillaume Seguin

HTML

<div class="root">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>5</div>
  <div>6</div>
  <div>7</div>
  <div>8</div>
</div>

SASS

.root {
  background-color: red;
  display: flex;
  
  & > div {
    width: 100%/4;
  }
}