Stuck at step 60 someone help me please

Hi there
I need help for this part
what i should do for make it work?

*my hint that i got
You should give .bb3 a background using `repeating-linear-gradient

Thank you in advace :slight_smile:

.bb3 {
  width: 10%;
  height: 55%;
  background-color: var(--building-color3);
  background: repeating-linear-gradient(
    direction,
    90deg,
    var-(building-color3), 0%
    var--(building-color3), 7.5%
    var--(window-color3) 15%
  );
}

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Maybe someone else knows off the top of their head, but I don’t know which course this is for. It is always helpful if you tell us both the course and the step number. Even better, use the Help button in the step itself to create a post in here.

Oh!! silly me I actually forgot about how to create topic. I did not be here for awhile. Thank you to fixed for me :slight_smile:

Please, remove direction, that’s unwanted.
The three vars have syntax problems, as well. You have an example of how to write that already. Look at the background-color

var(--building-color3);

But you have

    var-(building-color3)
    var--(building-color3)
    var--(window-color3) 
1 Like

It’s WORK!!
Thank you :slight_smile: