<style>
*{margin: 0;padding: 0;}
.fl{float: left;}
.clera::after{
display: block;
content: '';
clear: both;
}
html, body{
height: 100%;
}
.box{
height: 100%;
background: rgb(65, 4, 4);
}
header{
line-height: 50px;
background-color: yellow;
text-align: center;
}
.main{
height: calc(100% - 50px);
background-color: rgb(148, 148, 189);
}
nav{
line-height: 38px;
background-color: cyan ;
}
section{
height: calc(100% - 38px - 45px);
background-color:red ;
}
section aside{
height: 100%;
background-color: blueviolet;
text-align: center;
width: 35%;
}
section article{
height: 100%;
text-align: center;
background-color: green;
width: 65%;
position: relative;
}
article span{
position: absolute;
top: 50%;
left: 50%;
margin-left: -16px;
margin-top: -10px;
}
footer{
text-align: center;
line-height: 45px;
background-color: yellow;
}
</style>
<div class="box">
<header>头部</header>
<div class="main">
<nav>导航</nav>
<section class="clear">
<aside class="fl">侧边栏</aside>
<article class="fl"><span>正文</span></article>
</section>
<footer>底部</footer>
</div>
</div>