Problem Statement
Which is a valid animation shorthand property?
Explanation
The shorthand order is: name duration timing-function delay iteration-count direction fill-mode play-state.
Code Solution
SolutionRead Only
div { animation: bounce 2s linear 1s infinite alternate; }