Create a Gradual CSS Linear Gradient1

Tell us what’s happening:
I am unable to process the output even I did get output as required

Your code so far


<style>
div {
  border-radius: 20px;
  width: 70%;
  height: 400px;
  margin: 50px auto;
background: linear-gradient(90deg,#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/86.0.4240.198 Safari/537.36.

Challenge: Create a Gradual CSS Linear Gradient

Link to the challenge:

1 Like

Hey the required deg value for this question is 35deg. You have yours set to 90deg, change that and it should work everything else looks good. Hope I could help.

2 Likes

thanks for the help
I appreciate it…

1 Like