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 Page Layout with the Float Property The Float Challenge Solution

Amanda Cox
Amanda Cox
3,213 Points

Question about padding values on The Float Challenge

Guil applies padding-left and padding-right values on .col

Why does the padding-right get applied to .secondary and padding-left to .primary?

How is it determined which class gets padding-right and which class gets padding-left? Why are these values applied to the inside as opposed to the outside?

I hope this makes sense. Thanks in advance :)

1 Answer

Steven Parker
Steven Parker
229,732 Points

As you said, "Guil applies padding-left and padding-right values on .col". They are not applied separately to "primary" and "secondary", so both columns get both padding settings.

So the padding ("gutter") is added to both the inside and the outside at the same time.