JSFiddle - React, Tailwind, and code Playground

by zhang li

HTML

<div class="container">
    <div class="box"></div>
</div>

CSS

.box {
    width: 100px;
    height: 100px;
    background: black;
    transform: translateZ(29px) rotateX(37deg) rotateY(17deg);
}
.container {
    width: 100px;
    height: 100px;
    perspective: 200px;
}