JSFiddle - React, Tailwind, and code Playground

by ppgab

HTML

<div class="stacked">
  <button>
  1----------------------
  </button>
  <button>
  2
  </button>
  <button>
---------------------3
  </button>
</div>

CSS

.stacked{
  display: grid
}
.stacked > * {
  grid-column: 1/-1;
  grid-row: 1;
  opacity: 0.1;
}