Create a Gradual CSS Linear Gradient hlp plz

Tell us what’s happening:
The div element should have a linear-gradient background with the specified direction and colors.

Your code so far


<style>

  div{ 
    border-radius: 20px;
    width: 70%;
    height: 400px;
    margin: 50px auto;
    background:linear-gradient(35deg ,#ffcccc,hsl(180,100%,90%));
  }

</style>

<div></div>

Your browser information:

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

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

to change color from #CCFFFF to #FFCCCC

is this what you are doing?

background:linear-gradient(35deg ,#ffcccc,hsl(180,100%,90%)); in this line, the comma is also out of place to pass this challenge. Move it over one character node.

Note
While there are other ways to specify a color value, like rgb() or hsl() , use hex values for this challenge.

You are using one hex value and the other is a HSL value, which does appear to be the same value of the hex color, however:

Use a linear-gradient() for the div element’s background , and set it from a direction of 35 degrees to change the color from #CCFFFF to #FFCCCC .