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 trialkiran siddiqi
992 PointsPlease 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;
}
2 Answers
Clint Dehner
8,808 Pointsif you are calling straight from the html all you need is the name of the selector only.
id = # class =.
:D
kiran siddiqi
992 PointsThanks Vikranth I thought of div to define as an ID in css.
ananthula vikranth
Courses Plus Student 7,823 Pointsananthula vikranth
Courses Plus Student 7,823 PointsIn the 11th line, try removing the # before div.