how to scale image smoothly on hover 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: on hover zoom card
transform: scale(1.5);
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
transform: scale(1.5);