gpt4 book ai didi

css - 位置 : fixed; won't scroll 的 child

转载 作者:行者123 更新时间:2023-12-04 00:44:26 27 4
gpt4 key购买 nike

我有一个带有 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 不会滚动)

最佳答案

添加一个高度:

#list {
width: 100%;
height: 500px;
background-color: yellow;
overflow: scroll;
}

Updated fiddle

The height needs to be 100% – Patrick Reck 46 secs ago

那你为什么不能把它改成那样呢?

#list {
width: 100%;
height: 100%;
background-color: yellow;
overflow: scroll;
}

Fiddle

关于css - 位置 : fixed; won't scroll 的 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19876619/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com