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

What is wrong with my css?

Pls can someone help me out. My background is not changing. This is my code:

a{

text-decoration:none ;

}

wrapper{

max-width:940px ; margin: 0 auto; background:orange ; }

2 Answers

you're not selecting "wrapper" properly. use the 'id' or 'class' selector.

.wrapper{
max-width:940px ; 
margin: 0 auto; 
background:orange ; }

or

#wrapper{
max-width:940px ; 
margin: 0 auto; 
background:orange ; }

Thank you but I can understand the difference between my code and yours. They say the same thing.

Its the symbols before the word "wrapper" im referring to. The "." and "#" symbols