JSFiddle - React, Tailwind, and code Playground
by fersterin
HTML
<div class="parent">
<div class="child"></div>
</div>
CSS
html, body {
height: 100%;
}
.parent {
background-color: lightgreen;
width: 100%;
height: 50%;
}
.child {
min-width: 50%;
max-width: 70%;
min-height: 50%;
background-color: lightblue;
}