Learn CSS Transforms by Building a Penguin - Step 92

Tell us what’s happening:
The challenge said I should rotate the right arm 45deg counterclockwise, I did it right and added the closing semicolon but it didn’t pass and when I removed the semicolon it did past. What I don’t understand is isn’t the semicolon a most for CSS ?

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

.arm.right {
  top: 0%;
  right: -5%;
  transform: rotate(-45deg)
}

Your mobile information:

23106RN0DA - Android 13 - Android SDK 33

Challenge: Learn CSS Transforms by Building a Penguin - Step 92

Link to the challenge:

are you sure you did not change anything else? it passes with the semicolon

yes, if there is an other property after. If it is the last property in the selector the semicolon is not mandatory

I added the semicolon at first and I’ve been stuck at that for almost an hour without finding what the problem is and when I tried removing the semicolon it passed, the code I posted was the one that passed. I figure out maybe that’s how the editor was set

I’ve tested this and it pass with and without the semicolon.

If this happens in the future try to reset the step and try it again, sometimes something else may have been changed.