transform scale animation css 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: transform multiple css
li:nth-child(2) {
transform: rotate(15deg) translate(-20px,0px);
}