✖️ Hang in there. You'll get there. A hint:
.bb2b should have a linear-gradient transitioning from --building-color2 at 0% to 6%, and --window-color2 at 6% to 9%.
Maybe it’s a bug, so copy your code and try resetting the challenge then paste your code.
If that doesn’t work try removing the first 0% since it’s optional.
If it still does’t work try to put everything in the same line of code.
I reset the challenge and then pasted my code, which didn’t work. Then I removed the first 0% which didn’t work. I moved every on to one line and it works!
Thank you!
The error occurs do to the extra comma placed after the last var().
Remove the comma after the 9% so it looks like:
background: linear-gradient(
var(–building-color2) 0%,
var(–building-color2) 6%,
var(–window-color2) 6%,
var(–window-color2) 9%
);
The error occurs do to the extra comma placed after the last var().
Remove the comma after the 9% so it looks like:
background: linear-gradient(
var(–building-color2) 0%,
var(–building-color2) 6%,
var(–window-color2) 6%,
var(–window-color2) 9%
);
Basically your suggestion has to look as it is, however without the last comma: