Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ryan Graham
936 Pointscss Background color change. when I apply the background color to the "nav" element nothing happens.
When I apply the background color to the "nav" element nothing happens. Did I miss something?

John Burkhard
16,314 PointsWould need to see your CSS rule to help.

Ryan Graham
936 Points<head> <meta charset="utf-8"> <title>Ryan Graham | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <style> {color:white; {background-color:orange;} </style>
2 Answers

John Burkhard
16,314 PointsOkay there are a couple things you need to fix. First you're using an internal style sheet without targeting an element to style (like nav or body). I recommend creating a new style sheet and linking to it externally and editing all of your site styles inside of that. If you insist on using the internal style sheet, you'll need to reference your targeted element before adding the css rule.
Something like this:
<style>
nav {
color: white;
background-color: orange;
}
</style>

Rich Donnellan
Treehouse Moderator 25,780 PointsRyan,
Check out the CSS Ruleset section on the Mozilla Developers Network. You've defined the rule, but you're missing the selector. In this case, nav
.
Happy coding!
-Rich
Rich Donnellan
Treehouse Moderator 25,780 PointsRich Donnellan
Treehouse Moderator 25,780 PointsProbably. Post your code so we can better help you.