JSFiddle - React, Tailwind, and code Playground
by dodozhang21
HTML
<div id="outer">
<div id="inner">
</div>
</div>
CSS
#outer {
margin: 50px auto;
background-color: blue;
width: 500px;
height: 500px;
position: relative;
}
#inner {
width: 100px;
height: 100px;
background-color: orange;
position: absolute;
top: 100px;
left: 100px;
}