Create a Gradual CSS Linear Gradient Challenge problem

What happened

I suppose to create a linear-gradient for the challenge and I did and it’s not working so what is wrong with it?

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

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

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36.

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

i could be wrong, but i think you might just be missing something at the very end of your code…

Can confirm, you are missing a troublesome little ‘;’ at the end of the line :smiley: