JSFiddle - React, Tailwind, and code Playground

by Brynner

HTML

<div class="first">
First
</div>
<div class="second">
Second
</div>

CSS

body {
  margin: 0px;
}

.first {
  background-color: yellow;
  height: 200px;
}

.second {
  background-color: orange;
  min-height: 200px;
  height: calc(100vh - 200px);
}