JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrap">
<div id="header"></div>
<div>
<p style="width: 100%;">
tastlj asfdjlöasjfdöjaösd
asdfökpajsdöfka
asdfökasjdföaj
</p>
</div>
<div id="footer">test</div>
</div>
CSS
* {
padding: 0;
margin: 0;
}
#wrap {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
min-height: 700px;
background-color: #F2F2F2;
}
#header {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
background-color: pink;
}
#footer{
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 100px;
background-color: cyan;
}