在页面内div分栏显示
样式:
<style>
.left {
float: left;
width: 320px;
height: 100%;
overflow: scroll; // 滑块
}
.right {
margin-left: 350px;
height: 100%;
overflow: scroll;// 滑块
}
.main_class {
height: 960px; // 主页面高度
overflow: hidden;
}
</style>
页面显示
<body class="stackedit" >
<div class="main_class">
<div class="left">
<div class="toc">居左代码块</div>
</div>
<div class="right">具有代码块</div>
<div>
</body>