Learn CSS Variables by Building a City Skyline - Step 77

Please help, as far as I know from previous examples from other lessons and other examples I could find on the web this code is correct. However, it is not being accepted.

The Hint information is: You should give .fb1c a background with a repeating-linear-gradient.

And this is the code I am trying to use:

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

Your browser information:

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

Challenge: Learn CSS Variables by Building a City Skyline - Step 77

Link to the challenge:

Do you close the repeating-linear-gradient with an )?

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