I’m unsure what the issue is with my code. I’ve checked other forums on this topic and have tried using their code, however, it’s still saying there is an error. Does anyone able to help me please?
Instructions:
In .bb1a
, add a background
property below the background-color
property. Set it as a gradient of type linear-gradient
that uses --building-color1
as the first color and --window-color1
as the second.
Code:
.bb1a {
width: 70%;
height: 10%;
background-color: var(--building-color1);
background: linear-gradient(--building-color1,--window-color1);
}