console
<div class="page-container">
<div class="header"></div>
<div class="main">
<div class="main-l"></div>
<div class="main-r"></div>
</div>
<div class="footer"></div>
</div>
* {
margin: 0;
padding: 0;
}
.page-container {
width: 100vw;
height: 100vh;
}
.header {
height: 48px;
background-color: yellow;
}
.main {
height: 500px;
font-size: 0;
}
.main .main-l {
display: inline-block;
width: 200px;
height: 100%;
background-color: yellowgreen;
}
.main .main-r {
display: inline-block;
width: calc(100% - 200px);
height: 100%;
background-color: gray;
}
.footer {
height: 48px;
background-color: green;
}