Verifying my code [ SOLVED ]

Greetings :wave:t6:

[Learn CSS Variables by Building a City Skyline]
STEP 41

My response is not getting accepted. I’ve tried various placements, but it doesn’t seem to be working. Can someone please explain what I might be doing incorrectly?

bb1-window {

}

.bb1a {
  width: 70%;
  height: 10%;
  background-color: var(--building-color1);
  background: linear-gradient(
      var(--building-color1),
      var(--window-color1)
    );
}

.bb1b {
  width: 80%;
  height: 10%;
  background-color: var(--building-color1);
}

.bb1c {
  width: 90%;
  height: 10%;
  background-color: var(--building-color1);
}

.bb1d {
  width: 100%;
  height: 70%;
  background-color: var(--building-color1);
}
1 Like

Please post a link to the step when asking a question.

Class selectors start with a .

1 Like

Will do for next time thank you

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.