+ 1
Guys, how do I repeat css animation?
Animation on css https://code.sololearn.com/W56cFL4GfnEr/?ref=app
2 Answers
+ 3
animation-repeat doesn't exist.
You want this instead:
animation-iteration-count: infinite;
More details are at:
https://www.w3schools.com/cssref/css3_pr_animation-iteration-count.asp
+ 10
Use this property:
animation-iteration-count:infinite;