JSFiddle - React, Tailwind, and code Playground

by Cal Francesco

HTML

<div id="element"> I'm on top!!</div>

CSS

#element { 
    position: relative;  /* optional */
    width: 100px;
    height: 100px;
    background-color: blue;
    z-index:0
}

#element::before {
    content: "";
    width: 150px;
    height: 150px;
    background-color: red;

    /* create a new stacking context */
    position: absolute;
    z-index: -1;  /* to be below the parent element */
}