Test Sorry, your code does not pass. Keep trying. Hint You should give --building-color3 a value of #cc6699

" Create a new variable below the other ones named --building-color3 and give it a value of #cc6699 . Then use it as the background-color of the .bb3 class and give it a fallback value of pink ."

.bb1d {
width: 100%;
height: 70%;
background-color: var(–building-color1);
background-color: var(–building-color3, #cc6699)
}

.bb2 {
width: 10%;
height: 50%;
background-color: var(–building-color2, green);
background-color: var(–building-color3, #cc6699)
}

.bb3 {
width: 10%;
height: 55%;
background-color: var(–building-color3,#cc6699)/* The Fallback */pink;
}

Post code properly formatted.
Use the </> button for this purpose.
Also, add a link to the challenge.

you have a lot of typos. read carefully how it wants you to type your variables (look at the dashes specifically). also you should give a space after the comma, and before your fallback

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