JSFiddle - React, Tailwind, and code Playground
by Tan
HTML
<div id="first">
<div id="second"></div>
<div id="third"></div>
</div>
CSS
#first {
width: 200px;
height: 200px;
background-color: green;
overflow-x: hidden;
position:relative;
}
#second {
width: 50px;
height: 50px;
background-color: red;
position: absolute;
left: 150px;
top: 250px;
}