JSFiddle - React, Tailwind, and code Playground

by AndreaLigios

HTML

<div class="box">
    Hover me    
</div>

CSS

.box{
    width: 300px;
    height: 100px;
    background: silver;
    font-size: 4em;
    margin: 100px;
}

.box:hover{
    transform : perspective(400px) rotate3d(1, 0, 0, 50deg);
}