gpt4 book ai didi

html - div相对重叠

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

我有 3 个 div。我需要获得这些重叠,但我不能使用绝对定位。我怎样才能做到这一点?我的目标是在响应式布局上工作(不修复像素值)

    <div id="hold" style="background-color: #CCCCCC;padding: 10px">
<div id="first" style="width: 100px;height: 100px;background-color: red;z-index: 1"></div>
<div id="sec" style="width: 100px;height: 100px;background-color: greenyellow;z-index: 3"></div>
<div id="third" style="width: 100px;height: 100px;background-color: #a3dbec;z-index: 5"></div>
</div>

我使用了以下 CSS。

        #first,#sec,#third{
margin: 0 auto;
position: relative;
top: 0;
}

最佳答案

设置margin-top:

#sec
{
margin-top: -100px;
}
#third
{
margin-top: -100px;
}

http://jsfiddle.net/EPq6Z/

关于html - div相对重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15357840/

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