JSFiddle - React, Tailwind, and code Playground
by roberkules
HTML
<div id="wrapper">
<div id="inner">inner</div>
</div>
CSS
#wrapper {
border:10px solid red;
position:relative;
}
#inner {
position:absolute;
left:15px;
top:15px;
width:50px;
height:50px;
background:lime;
}