Problem with topic "Create a Gradual CSS Linear Gradient"

I can’t understand,what’s wrong?

Your code so far


<style>

  div{ 
    border-radius: 20px;
    width: 70%;
    height: 400px;
    margin: 50px auto;
    background: linear-gradient(35deg, #CCFFFF, #FFCCCC );
  }

</style>

<div></div>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-gradual-css-linear-gradient/

just remove the extra space after the last color and you will pass the challenge. like this:

    background: linear-gradient(35deg, #CCFFFF, #FFCCCC);

1 Like

Thank you very much!

1 Like

NP. please mark the previous answer as the solution to close this help request.