Learn CSS Variables by Building a City Skyline - Step 112

Tell us what’s happening:

No idea whats wrong…

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

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




/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Learn CSS Variables by Building a City Skyline - Step 112

Use #ffcf33 from 0% to 20% , #ffff66 at 21% , and #bbeeff at 100% .

You are missing something at 20%

This should not be there :

circle,

And like the lesson instructed you should :

Use #ffcf33 from 0% to 20%

1 Like