JSFiddle - React, Tailwind, and code Playground
by Shai Shprung
HTML
<div id=theDiv>DIV</div>
CSS
#theDiv{
position:relative;
width:100px; height:100px;
background-color:red;
margin:50px;
}
#theDiv:before{
content:"Before";
position:absolute; top:-30px; left:-30px;
width:90px; height:90px;
background-color:blue;
}
#theDiv:after{
content:"After";
position:absolute; top:30px; left:30px;
width:90px; height:90px;
background-color:yellow;
}