Shorthand property for animation in CSS
Given code:
#elem {
animation-name: anim;
animation-duration: 4s;
animation-delay: 5s;
animation-timing-function: ease;
}
Rewrite it using the shorthand property.
Given code:
#elem {
animation-name: anim;
animation-duration: 4s;
animation-delay: 5s;
animation-timing-function: ease;
}
Rewrite it using the shorthand property.