Learn CSS Variables by Building a City Skyline - Step 78

Hi everyone I hope you doing well, :

.fb1c {
width: 100%;
height: 80%;
background: repeating-linear-gradient(
90deg,
var(–building-color4),
var(–building-color4) 10%,
tansparent 10%,
transparent 15%
),
repeating-linear-gradient(
var(–building-color4),
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/109.0.0.0 Safari/537.36

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

Link to the challenge:

Please 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!

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

Hint

You should not alter the first repeating-linear-gradient. so I am looking to find where the problem on my code ? please and thank you in advance.

Hi JeremyLT,
sorry for that you can check my code on last post because I am trying to figure where is the problem on my code ?
:point_down: :point_down: :point_down: :point_down:

It helps if you describe what part of the challenge you are stuck or confused with instead of copy-pasting stuff at us.

Sure, When I am working on css tasks on SkyLine step 78,

I am try to solve the css repeating-linear-gradient where I add a second
repeating-linear-gradient but still not working with me. Moreover, I followed all the steps on the task. However, this my first time to post a problem and I hope to find a solution that I am looking to it.

What’s your code before and after this chunk? It looks ok to my eye, but I am not sure what the rest of your code looks like

Thanks buddy, I solve it by myself here where the problem !!

it was miss spelling

tansparent  10% ===> transparent  10% only and that all my problem :)

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