JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div id="wrap">
<div id="container">
<div id="header">header
</div>
<div id="content">qweW
</div>
</div>
</div>
<div id="footer">footer
</div>
</body>
CSS
* { margin: 0; padding: 0 }
html, body {
margin: 0;
padding: 0;
border:1px;
vertical-align:top;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:14px;
color:#333;
height: 100%;
background: #F60;
}
#container {
width: 100%;
padding-bottom: 75px;
}
#wrap {min-height: 100%;}
#header {
height: 100px;
width: 100%;
background: #069;
}
#content {
height: 100%;
width: 100%;
}
#footer {
position: relative;
margin-top: -75px;
clear:both;
height: 75px;
width: 100%;
background: green;
}