Learn CSS Variables by Building a City Skyline - Step 107

**Tell us what’s happening:**what am I doing wrong?

Your code so far

.fb6 {
  width: 9%;
  height: 38%;
  background-color: var(--building-color3);
  background: repeating-linear-gradient(
    90deg,
    var (building-color3) 0%,
    var (building-color3) 10%,
    transparent 10%,
    transparent 30%
  );
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

hi there, if something is wrong you should be seeing a hint.
Is it not helping?

Use three backticks (```) before and after the code to format the code properly.

it is just telling me to add repeating linear gradient

nothings helping is this some kind of bug?
i am dong everything corectly

make sure you place the var function immediately to the left of the bracket ( without any spaces in between.
Also use the correct variable names. (You are not using the correct ones because you are missing the -- at the start?)

You should eliminate “;” at the end of your code.

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