css hover transition enlarge 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: how to enlarge image when hover on in css
img:hover {
transform: scale(1.3);
}