This stupid code doesnt make sense

Step 19

Now give the rule a selector. Within that, set the to . By doing this, your animation will now complete a full rotation.@keyframes wheel 100% transform rotate(360deg)

my code:
@keyframes wheel {
0% {
transform: rotate(0deg);
}
}
@keyframes wheel {
100% {
transform: rotate(360deg);
}
}

Sorry, your code does not pass. Hang in there.

Your rule should have a selector.@keyframes wheel 100%

and I really hate to say this but this is really p***ing me off

Hi @SeanJ

Remove these lines of code.

You only need to code the selector once.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.