JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="test"></div>
</div>
CSS
.wrapper {
width: 100px;
height: 100px;
margin-left: 100px;
-webkit-perspective: 150px; /* Chrome, Safari, Opera */
perspective: 150px;
}
.test {
height: 100px;
width: 100px;
background: red;
-webkit-transform: rotateX(45deg);
/* Chrome, Safari, Opera */
transform: rotateX(45deg);
}