transform scale transition code example
Example 1: how to make a button grow in css
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
Example 2: transition scale
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet