Step 78
You can add multiple gradients to an element by separating them with a comma (
,) like this:gradient1( colors ), gradient2( colors );Add a
repeating-linear-gradientto.fb1cbelow the one that’s there; use your--building-color4from0%to10%and--window-color4from10%and90%. This will fill in behind the gradient you added last.
.fb1c {
width: 100%;
height: 80%;
background: repeating-linear-gradient(
90deg,
var(--building-color4),
var(--building-color4) 10%,
transparent 10%,
transparent 15%
),
repeating-linear-gradient(
var(--building-color4),
var(--building-color4), 10%,
var(--window-color4) 10%,
var(--window-color4) 90%,
)
}
Test
Sorry, your code does not pass. Try again.
Hint
You should add a
repeating-linear-gradientwith a first color of--building-color4from0%to10%.
What am I doing wrong?