JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
<div id="container">
    <header></header>
    <div id="content">
        
    </div>
    <footer></footer>
</div>
</div>

CSS

html, body {
    background: #ff3333;
    padding:0;
    margin: 0;
    height:100%;
}
#wrapper { 
    position: absolute;
    width: 100%;
    height: 90%;    
    padding-top: 10%;
    padding-bottom: -10%;
}

#container {
    position:relative;
    background: #FFF;
    margin: 0 auto;
    width: 200px;
    min-height:100%;
}
header {
    height: 60px;
    background: #888;
}
#content {
    background: orange;
    min-height: 200px;
    padding-bottom: 60px; /*FOOTER HEIGHT*/
}

footer {
    position:absolute;
    bottom: 0;
    width: 200px;
    height: 60px;
    background: blue;
}