我试图用:后伪元素CSS选择器样式一个元素

#element {
    position: relative;
    z-index: 1;
}

#element::after {
    position:relative;
    z-index: 0;
    content: " ";
    position: absolute;
    width: 100px;
    height: 100px;
}

似乎::后面的元素不能比元素本身更低。

有没有办法让伪元素低于元素本身?


当前回答

我解决得很简单:

.parent {
  position: relative;
  z-index: 1;
}

.child {
  position: absolute;
  z-index: -1;
}

这样做的是将父元素堆叠在z-index: 1处,这就给了子元素空间“结束”在z-index: 0处,因为其他dom元素“存在”在z-index: 0上。如果我们不给父元素一个z-index为1,子元素就会在其他dom元素下面,因此不可见。

这也适用于伪元素,如:after

其他回答

试试吧

el {
  transform-style: preserve-3d;
}
el:after {
  transform: translateZ(-1px);
}

说到规范(http://www.w3.org/TR/CSS2/zindex.html),由于a.someSelector被定位,它创建了一个新的堆叠上下文,它的子上下文无法跳出。保留a.someSelector不定位,然后子a.someSelector:after可以定位在与a.someSelector相同的上下文中。

伪元素被视为其关联元素的后代。要将伪元素放置在其父元素的下面,必须创建一个新的堆叠上下文来更改默认的堆叠顺序。 定位伪元素(absolute)并分配除" auto "之外的z-index值创建新的堆叠上下文。

#element { position: relative; /* optional */ width: 100px; height: 100px; background-color: blue; } #element::after { content: ""; width: 150px; height: 150px; background-color: red; /* create a new stacking context */ position: absolute; z-index: -1; /* to be below the parent element */ } <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Position a pseudo-element below its parent</title> </head> <body> <div id="element"> </div> </body> </html>

我不知道是否有人会有同样的问题。所选的答案部分正确。

你需要的是:

parent{
  z-index: 1;
}
child{
 position:relative;
 backgr

我解决得很简单:

.parent {
  position: relative;
  z-index: 1;
}

.child {
  position: absolute;
  z-index: -1;
}

这样做的是将父元素堆叠在z-index: 1处,这就给了子元素空间“结束”在z-index: 0处,因为其他dom元素“存在”在z-index: 0上。如果我们不给父元素一个z-index为1,子元素就会在其他dom元素下面,因此不可见。

这也适用于伪元素,如:after