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 trialAlex Nikdel
4,546 PointsWhat am I missing here?
The task is too select the ID "wrapper", set the max width to 940px and center is using margin.
I don't see the flaw in my CSS...
a { text-decoration: none; }
wrapper {
max-width: 940 px.; margin: 0 auto; }
3 Answers
Patrick Donahue
9,523 Points"#wrapper"
"#" for ID "." for class
Samiullah khan
Courses Plus Student 5,994 PointsSpaces are allowed between property and value but not between value and measurement unit. In this case if adding dot before "wrapper" didn't a space between "940" and "px" might cause problem.
Jeff Froustet
16,015 PointsI can't seem to locate the quiz, but from your description it sounds like you're trying to style an element with the ID "wrapper".
#wrapper {
max-width: 940px;
margin: 0 auto;
}