JSFiddle - React, Tailwind, and code Playground

by dp0ch

HTML

<section class="fill-height-or-more">
  <div>
    <!-- stuff -->
  </div>
</section>

CSS

.fill-height-or-more {
  background-color: green;
  display: flex;
  flex-direction: column;
  height: 800px;
  width: 400px;
}

.fill-height-or-more > div {
  background-color: red;
  display: grid;
  flex: 1;
}