Problem Statement
What is the correct syntax for defining a CSS keyframe animation?
Explanation
CSS animations are defined using the `@keyframes` rule, which specifies property changes at different points in time using percentages or keywords (from/to).
Code Solution
SolutionRead Only
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }Practice Sets
This question appears in the following practice sets:
