JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
<p></p>
<h1></h1>
CSS
div,p,h1{
height: 100px;
width:100px;
}
div{
background-color: rgba(255, 0, 0, 1);
}
p{
position:relative;
top: -75px;
left: 25px;
background-color: rgba(0, 255, 0, 1);
}
h1{
position:relative;
top: -150px;
left: 50px;
background-color: rgba(0, 0, 255, 1);
}