JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<div class="container">
content<br/>
content<br/>
content<br/>
content<br/>
content<br/>
content<br/>
content
</div>
</div>
CSS
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background: yellow;
}
#app {
height: 100%;
background: pink;
}
.container {
min-height: 100%;
background: green;
}