JSFiddle - React, Tailwind, and code Playground
by Ivin Raj S
HTML
<div class="out">
<div class="in">
</div>
</div>
CSS
.out {
margin: 100px auto;
width: 50%;
height: 100px;
background-color: green;
overflow:hidden;
}
.in {
width: 50%;
height: 50px;
background-color: red;
transform: translate3d(-20%, -40%, 0px) scale(0.7);
}