gpt4 book ai didi

css - 如何让父 div 准确包含位置为 : relative with offset? 的子 div

转载 作者:太空宇宙 更新时间:2023-11-03 23:32:03 24 4
gpt4 key购买 nike

<div class="outer">
<div class="first">
</div>
<div class="second">
</div>
</div>

.outer {
border: 1px solid black;
width: 200px;
}
.first{
background-color: rgba(20,20,200,0.5);
height: 100px;
}
.second{
position:relative;
top:-20px;
background-color: rgba(50,50,50,.5);
height: 100px;
}

http://jsfiddle.net/W5e4e/

我需要父类完全包含两个子类。当子 div 定位到相对位置时(为了将其向上或向下移动),父类仍然会看到子元素处于其静态位置。您可以在底部看到 20px 的间隙。我需要 parent 完全包含 child 。是否有非 JavaScript 解决方案?

最佳答案

不使用偏移量,use a negative margin to move the child instead :

.second{
margin-top:-20px;
background-color: rgba(50,50,50,.5);
height: 100px;
}

关于css - 如何让父 div 准确包含位置为 : relative with offset? 的子 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25050834/

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