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 Basics (2014) The Box Model Padding, Borders, and Margins

Padding, border, and margin code challenge problems

The code challenge is asking me to set the top padding to 80px and the bottom to 70px, but it keeps telling me I'm doing it wrong. What am I doing wrong? I've tried it two different ways:

div .secondary-content { padding-top: 80px; padding-bottom: 70px; }

and

div .secondary-content { padding: 80px 0px 70px; }

Any ideas where I'm going wrong here?

1 Answer

try removing the space between div and .secondary-content.

div.secondary-content { padding: 80px 0 70px; }

Perfect. Thank you! So simple but I was stuck on that for over an hour.