JSFiddle - React, Tailwind, and code Playground

by Vikram Deshmukh

HTML

<div class="container">
  <div class="item">...</div>
  <div class="item">...</div>
  <div class="item">...</div>
</div>

CSS

body {
  margin: 0;
  background: red;
  height: 100vh;
}

.container {
  margin: auto;
  max-width: 200px;
  background: gray;
  min-height: 100vh;
  box-sizing: border-box;
}

.item {
  background: white;
  margin-bottom: 1em;
  height: 100px;
}