JSFiddle - React, Tailwind, and code Playground
by [Twiner]
HTML
dddd
<div class="full-div blue height-full">
</div>
<div class="full-div blue">
</div>
CSS
html,body{ height: 100%; margin: 0; padding: 0; }
.full-div { overflow: auto; }
.height-full { height: 100%; }
.inner-div { width: 90%; height 80%; background-color: white; margin: 0 auto; overflow: auto; }
.inner-div span { text-align: center; }
/* easy colour helpers */
.red { background-color: red; }
.blue { background-color: blue; }
.green { background-color: green; }