gpt4 book ai didi

html - 无法使绝对定位的伪元素出现在其父元素之前

转载 作者:行者123 更新时间:2023-11-28 18:41:02 29 4
gpt4 key购买 nike

我正在尝试在其父元素下添加一个伪元素。两者都是绝对定位的,但伪元素坚持堆叠在其父元素之上。

Here is a jsfiddle.

HTML:

<div></div>

CSS

div{
position: absolute;
top: 10px;
left: 10px;
height: 20px;
width: 20px;
background: red;
z-index: 10;
}
div:before{
content: "";
position: absolute;
top: 0;
left: 0;
height: 40px;
width: 40px;
background: blue;
z-index: 1;
}

最佳答案

您只需添加另一个 z-index 为 1 且相对定位的父项。

示例:http://jsfiddle.net/D6mwn/1/

阅读更多:Is it possible to set the stacking order of pseudo-elements below their parent element?

关于html - 无法使绝对定位的伪元素出现在其父元素之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11392098/

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