Learn CSS Variables by Building a City Skyline - Step 78

Not able to pass this step. If anyone can kindly assist. I appreciate.

.fb1c {
width: 100%;
height: 80%;
background: repeating-linear-gradient(
90deg,
var(–building-color4) 0%,
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%,

);
}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

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

Link to the challenge:

The instructions do not ask you to set it to 90deg.

Also, you don’t need to set the first one to 0%.

Thank you. i done remove 90deg and removed 0%. But now still no go
.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%,

);
}

Screenshot 2023-08-14 at 3.46.16 PM

if you want to make your code easier to read you should put it in a code block. To do this you either press the “Preformatted text”(</>) button, or press the backtick (`) three times.
GitHub - kkangmj/markdown-code-block: VS Code extension for code block ...

What is that comma after the last one doing there?

1 Like

That did it. Thats why they call you Bbsmooth. thank you!!