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.

Alex Nikdel
4,537 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;
}