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 trialPedro Echeverria
12,221 PointsStage 8 Responsive Web Design Code Challenge is WRONG!!
The correct answer is
@media screen and (min-width: 480px) {
background: navy;
}
but it keeps telling me that it is wrong. Please fix this bug!!
1 Answer
Julian Gutierrez
19,201 PointsAlmost got it, you need to target the body
@media screen and ( min-width: 480px ){
body{
background:navy;
}
}
James Andrews
7,245 PointsJames Andrews
7,245 Pointstry putting a space between the colon and navy, also try using background-color: instead of background.
Pedro Echeverria
12,221 PointsPedro Echeverria
12,221 PointsJulian Gutierrez, thank you for helping me!