Learn CSS Variables by Building a City Skyline - Step 104

Tell us what’s happening:

what am i doing wrong here? This is the hint " You should give .fb5 a background property."

Your code so far

.fb5 {
background: repeating-linear-gradient(90deg, var(–building-color2) 0%, var(–building-color2) 5%, transparent 5%, transparent 10%);
width: 10%;
height: 33%;
background-color: var(–building-color2);
position: relative;
right: 10%;
}
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 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0

Challenge Information:

Learn CSS Variables by Building a City Skyline - Step 104

you have tipo in the colors --

Ok checked and thanks but still the same issue as a hint.

.fb5 {
    background: repeating-linear-gradient(90deg, var(--building-color2) 0%, var(--building-color2) 5%, transparent 5%, transparent 10%);
  width: 10%;
  height: 33%;
  background-color: var(--building-color2);
  position: relative;
  right: 10%;

you dont need a 90deg,I think you dont need a beckground-color
try thet…

1 Like

You are awesome thank you very much

1 Like

Hey dude you give it in right way but do a little change.

First kindly remove the angle which you provided as 90deg.

Second in the assignment of CSS Variable. You need to use two hypen sign (--)

var(–building-color2)

And you put something else.

Hope you will understand. :partying_face:

thanks but Zaklina already solved the problem

2 Likes

I am glad that he solved your problem :partying_face: , but I also try to solve i from my point of view. :innocent:

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