how to make a button grow in css

CSS
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
Source

Also in CSS: