Learn CSS Variables by Building a City Skyline - Step 78

Tell us what’s happening:
I am receiving the following error:
You should add a repeating-linear-gradient with a first color of --building-color4 from 0% to 10% .

Your code so far

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

add a comma after the parenthesis )

Thank you! It worked :slight_smile:

1 Like

hello and welcome to fcc forum :slight_smile:

you can also choose that reply from “hbar1st” as a “solution” as well, happy learning :slight_smile:

1 Like

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