gpt4 book ai didi

html - 使用 z-index 定位三个 div

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

<body>
<div id="red" class="colorbox"><p>RED</p>
<div id="green" class="colorbox"><p>GREEN </p>
<div id="blue" class="colorbox"><p>BLUE</p>
</div>
</div>
</div>
</body>

如何定位它:

红色方 block 在Z轴上放在另外两个方 block 之间;
绿色 block 放在红色 block 后面;
蓝色 block 放在红色 block 的前面。

像这样:

#red { z-index: 2; }
#green { z-index: 1 }
#blue { z-index: 3 }

非常感谢!

更新:

这是我的代码:http://jsbin.com/ihizot/3/edit

最佳答案

要使 z-index 起作用,您需要在每个元素上设置一个位置:

position:absolute、position:relative或位置:固定

例子:

<div id="green" class="colorbox"><p>RED</p>
<div id="red" class="colorbox"><p>GREEN </p>
<div id="blue" class="colorbox"><p>BLUE</p>
</div>
</div>
</div>

.colorbox {
position:relative;
height:50px;
width:50px;

}
#red {
background:red;
z-index: 2;
}
#green {
z-index: 1;
background: green;
}
#blue {
z-index: 3;
background:blue;
}

关于html - 使用 z-index 定位三个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14327393/

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