JSFiddle - React, Tailwind, and code Playground

by igalst

HTML

<div id="wrapper">
    <div id="elem"></div>
</div>

CSS

#wrapper {
    width: 75%;
    min-height: 500px;
    margin: 30px auto;
    background: #FED;
}
#elem {
    -webkit-transform: translateX(30px);
    -webkit-transform-origin: right center;
    width: 50px;
    height: 50px;
    background: #DAD;
}