Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Please Help CSS Challenge Tried twice but its not working.

I get the message Bummer! make sure your property is set to 'background-color' and value is set to 'lightblue'

body {
text-align: center;
}
p{
color: lightslategrey;
}
header {
background-color: orange;
color: white;
}
#div {
background-color:lightblue;

}

In the 11th line, try removing the # before div.

2 Answers

Clint Dehner
Clint Dehner
8,808 Points

if you are calling straight from the html all you need is the name of the selector only.

id = # class =.

:D

Thanks Vikranth I thought of div to define as an ID in css.