Answers for "css grow animation"

CSS
0

css grow animation

.card {
transition-duration: 0.2s;
transition-delay: 0s;
}

.card:hover {
transform: scale(1.1);
}
Posted by: Guest on February-02-2022

Browse Popular Code Answers by Language