JSFiddle - React, Tailwind, and code Playground

by George Y

HTML

<div class="wrapper">
      <div class="box"></div>
      <div class="box"></div>
      <div class="box"></div>
  </div>

CSS

.box {
    background-color: black;
    box-sizing: border-box;
    height: 48px;
    width: 100%;
    margin: 7px 0px 100px 0;
}

.box:last-child {
    margin: 0px 0;
    background-color: red;
}