JSFiddle - React, Tailwind, and code Playground
by Naeel Maqsudov
HTML
<div id="wraper">
<div id="header">ЗАГОЛОВОК</div>
<div id="hmenu">МЕНЮ</div>
<div id="content">
ВСЁ ОСТАЛЬНОЕ
<br>ВСЁ ОСТАЛЬНОЕ
<br>ВСЁ ОСТАЛЬНОЕ
<br>ВСЁ ОСТАЛЬНОЕ
<br>ВСЁ ОСТАЛЬНОЕ
<br>ВСЁ ОСТАЛЬНОЕ
<br>
</div>
<div id="footer">ПОДВАЛ</div>
</div>
<div class="bg first">верхняя полоса</div>
<div class="bg second">нижняя полоса</div>
CSS
body {
margin: 0;
padding: 0;
}
#wraper {
width: 500px;
margin: 0 auto;
position: relative;
border: 1px solid blue; /*рамка для отладки*/
}
.bg {
position: absolute;
z-index: -1;
width: 100%;
}
.bg.first {
top:0;
height:40px;
background-color: #efe;
}
.bg.second {
top:40px;
height:60px;
background-color: #eef;
}