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!
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

Justice Avery
8,122 PointsFinally, target main-content with an ID selector. Add a background-color property and set the value to lightsteelblue?
main-content {
background-color: lightsteelblue;
}
6 Answers

Salman Akram
Courses Plus Student 40,065 PointsHi Justice,
I find you didn't put ID selector which require to add #
for ID.
For example: #main-content
#main-content {
background-color: lightsteelblue;
}
If you find Classes selector, you will have to use . (period)
Happy Coding :)

S J B
2,631 Pointsyup as per James above and didn't work for me either...

Snow Girl
Full Stack JavaScript Techdegree Student 11,438 Points#main-content {
background-color: lightsteelblue;
}
You might have forgotten the hash before main-content - hope this helps!

James Barshaw
9,284 PointsI did this and it didn't work my answer looks like this
#main-content { background-color: lightsteelblue; }

Linsey Buckner
3,073 Pointsmain-content {
background-color: lightsteelblue;
}
This is not working for me.

Justice Avery
8,122 Pointsthanks for the help :3
Linsey Buckner
3,073 PointsLinsey Buckner
3,073 Pointsmain-content {
background-color: lightsteelblue;
}
Is something wrong with my answer, it won’t submit?