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

Why can't we use margin to separate the two floated columns?

Whenever I try to use margin, instead of padding, to space out the columns, the columns end up taking two separate lines. Why do we have to use padding instead of margins? We used margin to space out the list elements in the main-header so why can't we use it here?

1 Answer

Steven Parker
Steven Parker
229,732 Points

Depending on what box sizing is in use, padding might participate in width calculations, but margins never do.

You could still use margins, but you would have to adjust the widths to account for the extra space.