Learn CSS Variables by Building a City Skyline - Step 77

Tell us what’s happening:

everything I have seen says this is the way to code it but I fail the test this way, so where am i going wrong?

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.fb1c {
  width: 100%;
  height: 80%;
  background: repeating-linear-gradient(
    90deg,
    var(--building-color4) 0%,
    var(--building-color4) 10%,
    transparent 10%,
    transparent 15%,
  );
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36

Challenge Information:

Learn CSS Variables by Building a City Skyline - Step 77

Hello!
There is a comma after transparent 15%., try removing that.

so simple it hurts… thank you!

1 Like

Simple mistakes like that do happen, so don’t worry about it. You are welcome. Happy coding!

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