Answers for "can css transition include scale"

CSS
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