Problem Statement
Which property controls how many times an animation repeats?
Explanation
`animation-iteration-count` defines how many times an animation should repeat. You can use numbers or `infinite` for continuous looping.
Code Solution
SolutionRead Only
.box { animation-iteration-count: infinite; }Practice Sets
This question appears in the following practice sets:
