JSFiddle - React, Tailwind, and code Playground
by Aldi Unanto
HTML
<div>This is text</div>
CSS
div{
display: block;
background-color: red;
width: 100px;
height: 100px;
margin: 100px auto 0 auto;
transition: 0.5s all;
border: 1px solid #000;
}
div:hover{ transform:scale(3) rotate(360deg); }