我有一个侧边栏position: fixed
。在这个侧边栏中,我有一个.list
我想使用的地方overflow: scroll
。但是,它没有按我的意愿工作。
HTML
<div id="side">
Stuff
<div id="list">
<div class="item">An item</div>
</div>
</div>
CSS
#side {
width: 20%;
height: 100%;
background-color: red;
position: fixed;
}
#list {
width: 100%;
background-color: yellow;
overflow: scroll;
}
.item {
padding: 10px;
}
JSFiddle的问题: http: //jsfiddle.net/wGE9W/(黄色list
不会滚动)