JSFiddle - React, Tailwind, and code Playground
by Praveen Kumar Purushothaman
HTML
<div class="parent">
Hello, Earth!
<div class="child">Hello, World!</div>
</div>
CSS
.parent {position: relative; width: 100px; height: 100px; border: 1px solid #ccc; overflow: hidden;}
.parent .child {position: absolute; width: 150px; height: 150px; background: #999; left: 25px; top: 25px;}