Problem Statement
Which property repeats an animation indefinitely?
Explanation
`animation-iteration-count` controls how many times an animation repeats. Setting it to `infinite` loops it endlessly.
Code Solution
SolutionRead Only
div { animation: pulse 2s infinite; }