Learn CSS Variables by Building a City Skyline - Step 105

Okay, I think I’m just tired at the moment and made a silly mistake somewhere. Please help!

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15

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

Link to the challenge:

An example might be:
<a href="www.FreeCodeCamp.org">Check out this amazing page</a>

I apologize for the off-topic comments from the other camper. Pls do not feel obliged to respond to them. I have flagged them.

1 Like

Here is the mistake.

var is only used to access variables.

90deg is a direction and not a variable

There erase the word var and the bracket.

Ahhh okay. Thank you :grinning:

1 Like

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