Learn CSS Variables by Building a City Skyline - Step 60

This exercise doesn’t work for me, it asks me for the following correction and I can’t solve it.

From already thank you very much!

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

You should use --window-color3 at 15% for the third color.

Exercise link:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Hello @dylanmazurzgainer
The property background-color: is still supposed to be there along with background:. Only the last --window-color3 is supposed to be 15%, the others get the default according to the requirement.

1 Like

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