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 trialVasu Rawal
1,147 PointsThe 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
231,248 PointsI 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; }