Learn CSS Variables by Building a City Skyline - Step 112

I dont know whats happening, i have to do this: Give the sky class a radial-gradient . Use #ffcf33 from 0% to 20% , #ffff66 at 21% , and #bbeeff at 100% . This will add circular gradient to the background that will be your sun.

THE CODE:

.sky {
    background: radial-gradient(
      #ffcf33 ,
      #ffff66 21%,
      #bbeeff 100%
    )
}

The hint: You should give the radial-gradient a first color of #ffcf33 .

this is the link

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

It looks like you are close but are missing this part here

you did the first part of that here

but then you are missing the part for the 20%

once you fix those issues, then it should pass

thank you! that was the issue

1 Like

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