JSFiddle - React, Tailwind, and code Playground
by Dineshkani
HTML
Hover the element to see the effect of transition.
<div>
</div>
CSS
div{
background-color:blue;
width: 40px;
height: 40px;
transition: all 2s;
-moz-transition:all 2s; /* Firefox 4 */
-webkit-transition:all 2s; /* Safari and Chrome */
-o-transition:all 2s; /* Opera */
}
div:hover{
height: 400px;
width: 400px;
}