gpt4 book ai didi

html - 如果父 div 尺寸较小,则给 div 滚动条

转载 作者:太空宇宙 更新时间:2023-11-04 14:57:38 25 4
gpt4 key购买 nike

我有固定大小的子 div,当液体父 div 的宽度小于子 div 时,我想将子保留在父 div 中并给子滚动条。 jsfiddel

HTML

<div id="parent">
<div id="child"></div>
</div>

CSS

.child{

width: 500px;
height: 400px;

background-color: green;

}

.parent{

height: 100%;
width: 100%;
background-color: red;
padding: 50px;
width: auto;
}

最佳答案

在父容器中添加overflow: auto;:

.parent{
height: 100%;
width: 100%;
background-color: red;
padding: 50px;
width: auto;
overflow: auto;
}

DEMO

关于html - 如果父 div 尺寸较小,则给 div 滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16823228/

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