i don’t understand, where is my mistake,
.bb1d {
height: 70%;
width:100%;
background-image: linear-gradient(
orange ,
var(--building-color1) 80%,
var(--window-color1)
);
}
i don’t understand, where is my mistake,
.bb1d {
height: 70%;
width:100%;
background-image: linear-gradient(
orange ,
var(--building-color1) 80%,
var(--window-color1)
);
}
Hello, mogo1234,
You need to have two hyphens ( --
) instead of one ( -
) before building-color1
and window-color
.
For example, replace
var(-building-color1)80%
with
var(--building-color1) 80%
Hope this helps
can you give the link to the step?
Welcome to the forum @mogo1234
Please remove -image
from your code.
You appear to have changed the property.
Happy coding
thank you everyone, I managed to pass!
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.