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 CSS Layout Basics Getting Started with CSS Layout Layout Wrapper Challenge

The code is not getting accepted inspite of that producing the desired results in the preview

.container {

width : 80%; margin : 0 auto; }

1 Answer

Steven Parker
Steven Parker
229,695 Points

I think you have found an actual bug here. You might want to report this to help@teamtreehouse.com - it will likely get you an exterminator badge!

In the meantime, to continue your course progress, remove the spaces between the property names and the colons. As you noticed, it does not affect the rendering of the style, but for the moment it apparently interferes with the challenge scoring mechanism.

.container {
  width: 80%; margin: 0 auto; }