JSFiddle - React, Tailwind, and code Playground

by operatino

HTML

<div></div>

CSS

div {
width: 50px; height: 50px;
background: red;
-webkit-transition: -webkit-transform 1s;
}
div:hover {
	-webkit-transform: scale(2);
}