gpt4 book ai didi

html - 在设置了最大高度的 div 内滚动 div

转载 作者:行者123 更新时间:2023-11-27 23:38:43 24 4
gpt4 key购买 nike

我正在尝试制作一个 div,它在一个 div 中滚动其内容,并设置了 height: auto 和 max-height:(heightpx);。我注意到,如果我将高度设置为一个值并删除最大高度,它就会起作用。

<div style="height:auto; max-height:200px; background:red;">
<div class="fill">
<div class="fill">
<div class="fill">
<div class="scrolly" style="height: calc(100% - 45px)">
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
<div>hello</div>
</div>
</div>
</div>
</div>

.scrolly {
overflow-x: hidden;
overflow-y: scroll;
position: relative;
}

.fill {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}

这是一个 jsfiddle http://jsfiddle.net/szze6a66/

最佳答案

溢出-y:自动

<div style=" max-height:200px; background:red; overflow-y:auto">

http://jsfiddle.net/djktzyec/

希望对你有帮助

关于html - 在设置了最大高度的 div 内滚动 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32643045/

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