JSFiddle - React, Tailwind, and code Playground

by Johan Muller

HTML

<ul>
  <li>
    1
  </li>
  <li>1</li>
  <li>1</li>
  <li>1</li>
  <li>1</li>
</ul>

SCSS

ul {
  height: 300px;
}

li {
  height: 100%;
  width: 100px;
  float: left;
  border-left: 1px solid red;
  &:first-child {
    border: 0;
  }
}