gpt4 book ai didi

html - 防止动态内容与其他 div 重叠的 div

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

查看此 Fiddle

这是div结构

<div class="wrapper">
<div class="mainG mainGT">
<div class="rawV">
<div class="svs"></div>
<div class="drgM"></div>
</div>
</div>
</div>
<div class="botttom">
<button type="button">Click Me!</button>
</div>

.wrapper 的高度是动态的(我在 fiddle 中使用了 .wrapper{height: 30px;} 作为示例)。如您所见,.wrapper.botttom 重叠。如何防止 .wrapper.botttom 重叠并始终在 .botttom.wrapper` 下方?

|------------|
| .wrapper |
|------------|

|------------|
| .bottom |
|------------|

最佳答案

使用 min-height 而不是 height 这将解决您的问题。

.wrapper
{
min-height: 100px;
overflow: hidden;
}

关于html - 防止动态内容与其他 div 重叠的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29969391/

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