I need a help on this to Create a Gradual CSS Linear Gradient

Tell us what’s happening:

Your code so far


<style>

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

</style>

<div></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

Change the rgb(#CCFFFF) to just #CCFFFF

its still shows an error but i have got the colored border radius

Can you post your new code in between two lines of backticks like these ` three of these backticks above and three below.

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

try leaving one space between the : and the word ‘linear’ like this:

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

thank you mam…