JSFiddle - React, Tailwind, and code Playground

by drublic

HTML

<div class="d1"></div>
<div class="d2"></div>

CSS

div { width: 100px; height: 100px; background: #ddd; margin: 10px; }
div:hover { width: 120px; height: 120px; }

.d1 { -webkit-transition: all 1s; }
.d2 { -webkit-transition: all 1s ease-in; }