JSFiddle - React, Tailwind, and code Playground
by mledbetter
HTML
<div class='container'>
<div class='item'>
<span>
This is some test text.
</span>
</div>
</div>
<div class='container'>
<div class='item'>
</div>
</div>
CSS
.container {
display: block;
background-color: #2ecc71;
height: 100px;
width: 100px;
float: left;
padding: 5px;
}
.container:nth-child(2) {
background-color: pink;
position: absolute;
top: 80px;
left: 80px;
z-index: 1;
}
.container:nth-child(1) {
position: relative;
z-index: 5;
}
.item {
display: block;
background-color: Orange;
height: 100%;
width: 100%;
}