Help me figure this one out

Tell us what’s happening:
Describe your issue in detail here.
style>

div{

border-radius: 20px;

width: 70%;

height: 400px;

margin:  50 auto;

background: repeating-linear-gradient(

  45deg,

  yellow 40px,

  yellow 00px.

  black 80px,

  black 40px,

);

}

  **Your code so far**

<style>

div{
  border-radius: 20px;
  width: 70%;
  height: 400px;
  margin:  50 auto;
  background: repeating-linear-gradient(
    45deg,
    yellow 0px,
    yellow 40px.
    black 40px,
    black 80px,
  );
}

</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/92.0.4515.107 Safari/537.36 Edg/92.0.902.62

Challenge: Use a CSS Linear Gradient to Create a Striped Element

Link to the challenge:

It keep posting that I need to change the color of the second stop 40px to black.

Hello.
here are some problems i have listed below →

right here you put a " . " instead of " , "

2 . the challenge instructions says

  • The color stop at 0 pixels should be yellow .*
  • One color stop at 40 pixels should be yellow .*
  • The second color stop at 40 pixels should be black .*
  • The last color stop at 80 pixels should be black .*
    what you have done is →
  yellow 40px,

  yellow 00px.

  black 80px,

  black 40px,

follow the instructions.

Thank you so much . Lol its time I upgrade my glasses

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.