JSFiddle - React, Tailwind, and code Playground
by mitiya
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="main">
<div id="content">
<div id="top">
top
</div>
<div id="center">
content
</div>
<div id="bottom">
bottom
</div>
</div>
</div>
</body>
</html>
CSS
html, body, #main, #content{
height: 100%;
}
html, body{
margin: 0;
}
#top, #bottom{
height: 10%;
background-color: red;
}
#center {
height: 80%;
background-color: gold;
}