gpt4 book ai didi

html - 提高一个 div 在另一个之上

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

我有两个 html div

<div style="height:100px;width:100px;position:fixed;left:0;top:0;background-color:red;" id="1">
<div style="height:200px;width:200px;position:fixed;left:0;top:0;background-color:yellow;" id="2">
</div>
</div>

这两个 div 位于同一个地方。因此,第二个 div 会在第一个 div 上产生。我想提高第一个 div 而不是第二个。

我可以通过改变两个 div 的位置来做到这一点:

    <div style="height:200px;width:200px;position:fixed;left:0;top:0;background-color:yellow;" id="1">

<div style="height:100px;width:100px;position:fixed;left:0;top:0;background-color:red;" id="2">
</div>
</div>

可是我做不到。因为我想让#1 成为#2 的 sibling 。如何在不改变#1 和#2 位置的情况下做到这一点?

最佳答案

你把黄色的作为红色的 child ,在这种情况下就没有办法把红色的( parent )带到 child 的前面。

我所做的是让两个 div 成为 sibling 。通过这种方式,您可以控制 z-index 属性以将其中之一置于最前面。

<div style="height:100px;width:100px;position:fixed;left:0;top:0;background-color:red; z-index:10;" id="1"></div>
<div style="height:200px;width:200px;position:fixed;left:0;top:0;background-color:yellow;z-index:0;" id="2">
</div>

关于html - 提高一个 div 在另一个之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46501221/

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