JSFiddle - React, Tailwind, and code Playground

by Cthulhu

HTML

<ul>
  <li>1</li>
  <li>2</li>
  <li>3</li>
  <li>4</li>
  <li>5</li>
  <li>6</li>
  <li>7</li>
</ul>

CSS

ul {
  list-style: none;
  letter-spacing: 0;
}

li {
  background-color: red;
  display: inline-block;
  height: 100px;
  width: 100px;
}