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
Hauwa Mahuta
443 PointsWhat 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
Risto Mcintosh
14,084 Pointsyou'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 ; }
Risto Mcintosh
14,084 PointsIts the symbols before the word "wrapper" im referring to. The "." and "#" symbols
Hauwa Mahuta
443 PointsHauwa Mahuta
443 PointsThank you but I can understand the difference between my code and yours. They say the same thing.