Learn CSS Variables by Building a City Skyline - Step 60

You should give .bb3 a background using repeating-linear-gradient. I don’t what i am doing wrong, it is showing the same error.

.bb3 {
  width: 10%;
  height: 55%;
  background-color: var(--building-color3);
  background: repeating-linear-gradient(90deg,
  var(building-color3),
  var(building-color3),
  var(window-color3) 15%);
}

The variable names should start with -- as you have here

background-color: var(--building-color3);


Also please link to the challenge when asking for help or use the Ask for help button.

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