Tell us what’s happening:
So I’m learning CSS transforms by building a Penguin. But in step two (I know, so far!) it keeps saying: You should use the background
property in the body
selector. This is what I have so far:
body {
background: linear-gradient(45deg, clockwise, rgb(118, 201, 255), rgb(247, 255, 222));
}
Any ideas?
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.
The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
Welcome to the community!
From what you posted for code, I think you added something that does not need to be included in the code.
Hint: Usually, what needs to be included in the code is highlighted for us in the instructions.
I hope this helps you!
Happy coding! 
Thanks, both, sorted now! 
(for anyone looking at this in the future ‘clockwise’ isn’t necessary in the CSS. It just assumes it’s clockwise if the deg number is positive and anti-clockwise if negative.)