Learn CSS Variables by Building a City Skyline - Step 78

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

error: You should add a repeating-linear-gradient with a first color of --building-color4 from 0% to 10% .

Hello!

I am not sure if the instructions ask for the 90deg to be included in the second repeating-linear-gradient. But, I think it is not to be included.

1 Like

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