How to arrange :before or :after pseudo element with position: absolute
and z-index: -1
under element with position: absolute
and z-index: 1
https://jsfiddle.net/x5x6ye97/2/
#element {
position: absolute;
z-index: 1;
width: 100px;
height: 100px;
background-color: blue;
}
#element::after {
content: "";
width: 150px;
height: 150px;
background-color: red;
position: absolute;
top: 20px;
z-index: -1;
}
<div id="element"></div>