After animation?
So I have a card where if you hover then it scales up. If you remove hover it scales back to normal instantly. How do I make the scaling out as an animation as well?
transform, then it would be transition: transform 1s ease.card{
transition : 500ms ease-out;
}
.card:hover{
transform : scale(1.5);
}