JSFiddle - React, Tailwind, and code Playground
HTML
<div id="main">
<div id="child"></div>
</div>
CSS
body{
background: #FFFFFF;
}
#main{
position: absolute;
right: 0px;
width: 300px;
height: 100px;
overflow-x: hidden;
}
#child{
position: relative;
width: 94px;
height: 94px;
left: 230px;
border: 3px green solid;
}