答案 0 :(得分:1)
<div class="wrapper">
<div class="sidebar">
SIDE
</div>
<div class="main">
CONTENT
</div>
</div>
.wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.main {
background: red;
height: 100%;
overflow: auto;
}
.sidebar {
background: blue;
width: 200px;
height: 100%;
float: left;
overflow: auto;
}