Problem Statement
Which syntax correctly defines a CSS keyframe animation?
Explanation
`@keyframes` defines intermediate steps of an animation between `from` and `to` or percentages.
Code Solution
SolutionRead Only
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }