JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body>
<div id="wrapper">
<div id="content">
Some random content
</div>
</div>
</body>
</html>
CSS
html {
height: 100%;
}
body{
height: 100%;
margin: 0 auto;
}
#wrapper {
min-height:100%;
background-color:yellow;
}