Answers for "scale with transition css"

CSS
4

how to make a button grow in css

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
Posted by: Guest on May-10-2020
1

transition scale

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }Create a snippet
Posted by: Guest on March-17-2021

Browse Popular Code Answers by Language