JSFiddle - React, Tailwind, and code Playground
by ashraffayad
HTML
<div id="outer">
<div id="inner">
</div>
</div>
CSS
#outer {
position: absolute;
left: 100px;
top: 0;
width: 100px;
height: 100px;
direction: rtl;
background-color: blue;
}
#inner {
position: absolute;
width: 50px;
height: 50px;
background-color: yellow;
}