JSFiddle - React, Tailwind, and code Playground

by maxflex

HTML

<div class="parent">
  <div class="child">
    test
  </div>
</div>

CSS

.parent {
  min-height: 200px;
  border: 1px solid black;
}

.child {
  height: 100%;
  border: 1px dashed red;
}