JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

HTML

<div>

</div>
Hi!

CSS

div {
  width: 100px;
  height: 100px;
  background-color: green;
  transition: transform 2s;
}

div:hover {
  transform: scale(1.5);
}