JSFiddle - React, Tailwind, and code Playground
HTML
<div>
</div>
Hi!
CSS
div {
width: 100px;
height: 100px;
background-color: green;
transition: transform 2s;
}
div:hover {
transform: scale(1.5);
}
<div>
</div>
Hi!
div {
width: 100px;
height: 100px;
background-color: green;
transition: transform 2s;
}
div:hover {
transform: scale(1.5);
}