scale up transition code example
Example: transition scale
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet