Create a Gradual CSS Linear Gradient of 35 degrees from#ccffff to #ffcccc

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,light red,light blue,hex #ccffff,#ffcccc);
    
  }

</style>

<div></div>

Your browser information:

1 Like

Which is your question?

Can you add a link to this challenge?

The link isnt sending. its said due to security reasons.

You don’t need extra colors inside your linear-gradient. Just like your title says, it will have 35degrees of angle from those two colors. You have them already so just remove hard coded colors. Also you have word ‘hex’ infront of a color which is not valid.