gpt4 book ai didi

css - z-index 不适用于 :before 跨度

转载 作者:行者123 更新时间:2023-12-02 07:29:25 25 4
gpt4 key购买 nike

如何将 :before 放在 span 后面?我知道我以前做过,但我不记得怎么做了。这是 fiddle 。

HTML

<span>Stack Overflow</span>

CSS

span{
background:#000;
position:relative;
color:#fff;
z-index:20;
}
span:before{
content:'';
background:#000;
position:absolute;
left:50%;
bottom:-10px;
width:20px;
height:20px;
z-index:1;
}

Fiddle

最佳答案

z-index是相对的,所以对于 :before出现在其父元素下方的伪元素 <span> , 您可以指定 -1 的 z-index :

span:before{
content:'';
background:#000;
position:absolute;
left:50%;
bottom:-10px;
width:20px;
height:20px;
z-index:-1;
}

jsFiddle Demo

关于css - z-index 不适用于 :before 跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23652105/

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