我有一個問題。固定工具欄和它下面的div可以滾動
我的頁面按左右部分分開。 每個零件都有其工具欄和工具欄下的內容。
我想讓工具欄修復,只有內容滾動。
但是,當我使內容{overflow:scroll}, 太長的內容文本將在div之外。
當我使兩個部分{overflow:scroll},兩個工具欄{position:fixed},工具欄1的寬度將爲100%,覆蓋toolbar2。
p.s.此頁面使用JavaScript。一個是粘性頁腳,一個是如果主要內容的文本太短,它的div可以調整窗口大小。
.left {
float: left;
width: 20%;
}
.right {
float: right;
width: 80%;
}
.toolbar1 {
position: fixed;
background-color: red;
}
.toolbar2 {
position: fixed;
background-color: yellow;
}
.scroll {
overflow: scroll;
}
.clear {
clear: both;
}
<div class="left">
<div class="toolbar1">asdfgh</div>
<div class="scroll">1<br>1<br>1<br>1<br>1<br>1<br>1<br></div>
</div>
<div class="right">
<div class="toolbar2">123123</div>
<div class="scroll">1<br>1<br>1<br>1<br>1<br>1<br>1<br>1<br></div>
</div>
<div class="clear"></div>
<footer>footer</footer>