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