JSFiddle - React, Tailwind, and code Playground
by docluv
HTML
<div id="wrapper"><div id="transformMe"></div></div>
CSS
#wrapper
{perspective: 500px;
}
#transformMe {
height:200px;
width:200px;
background-color:blue;
transform: rotateY(45deg);
transform-origin: 50% 100%;
}