JSFiddle - React, Tailwind, and code Playground

by Christopher

HTML

<div class="abox">
    <div class="bbox"></div>    
</div>

CSS

body {margin:0;padding:0;}
.abox {background:orange;height:500px;width:400px;position:relative;bottom:25px;}
.bbox {background:black;height:300px;width:330px;position:relative;margin:auto;top:80px;}

JavaScript

$('.abox').animate({"transform":"rotateZ(90deg)"});