https://www.freecodecamp.com/challenges/use-clockwise-notation-to-specify-the-padding-of-an-element
It has been asked to use clockwise notation to have padding on green-box class. However, even if I do not use clockwise notation, it passes all the tests correctly. Is there any way this could be corrected?
Same is the issue with Challenge 51 for margin instead of padding.
...
.green-box {
background-color: green;
padding-top:40px;
padding-right:20px;
padding-bottom:20px;
padding-left:40px;
}
...

This should be straightforward. I'll give it a shot.
Most helpful comment
This should be straightforward. I'll give it a shot.