JSFiddle - React, Tailwind, and code Playground
HTML
<div class="gary">Hello Gary</div>
CSS
body {
margin: 0;
}
.gary {
position: relative;
}
.gary::before {
content: '';
display: block;
width: 800px;
height: 1000px;
position: absolute;
background-color: blue;
z-index: -1;
}