The test is failing even though I can see the style being correctly applied to the element.
Here is what I’m doing:
.bb2b {
width: 100%;
height: 100%;
background: repeating-linear-gradient(
var(–building-color2) 0%,
var(–building-color2) 6%,
var(–window-color2) 6%,
var(–window-color2) 9%
);
}
And this is the response from the IDE
Test
Sorry, your code does not pass. You’re getting there.
Hint
You should change the background
property of .bb2b
from using linear-gradient
to using repeating-linear-gradient
.