CSS 实现导航栏和左侧栏固定 内容区滚动
将navbar、sidebar、content相对浏览器固定。
navbar距离左右为0(使其占整宽)。
sidebar距离下为0、距离上为navbar的高度(使其占除了navbar外的浏览器整高)。
content向右浮动,距离下 右为0、距离上为navbar的高度,设置overflow:scroll 。
<html>
<head>
<style>
.navbar {
margin-bottom: 0;
position: fixed;
left: 0;
right: 0;
}
.sidebar {
background: lightgray;
padding: 0;
position: fixed;
top: 52px;
bottom: 0;
}
.content {
position: fixed;
top: 52px;
right: 0;
bottom: 0;
overflow: scroll;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse"></div>
<div class="container-fluid main">
<div class="row">
<div class="col-md-2 sidebar"></div>
<div class="col-md-10 content pull-right"></div>
</div>
</div>
</body>
</html>