Guys, how do I repeat css animation? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Guys, how do I repeat css animation?

Animation on css https://code.sololearn.com/W56cFL4GfnEr/?ref=app

2nd Apr 2021, 5:27 AM
Codemurai
Codemurai - avatar
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
2nd Apr 2021, 5:31 AM
Josh Greig
Josh Greig - avatar
+ 10
Use this property: animation-iteration-count:infinite;
2nd Apr 2021, 5:32 AM
Igor Makarsky
Igor Makarsky - avatar