Learn-css-variables-by-building-a-city-skyline/step-78

Hello guys, seems my code have all what is required but still not accepted

.fb1b {
width: 60%;
height: 10%;
background-color: var(--building-color4);
}
.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%,

  );
}

Hi there!

Post a link to the challenge step. Also add three back ticks (```) on separate line before and after your code.
Note: it’s best to create a topic to the challenge step using Help button. That button appears below the challenge editor, when you try to submit the wrong code more than three times.

Ok, you right, i linked the test and charted the code

Remove the 90deg angle from the gradient. It isn’t asked in the challenge step. Also remove the last comma after 90%

It’s working, thx again!

1 Like