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

Bobby Tagget
Bobby Tagget
16,564 Points

How come the added 1em padding doesn't push the content onto the next line?

I originally completed this challenge using the float method, however I think for intrinsic documentation purposes Guil's method is more understandable. I just can't understand how the padding doesn't push the content onto the next line considering each column is 50% wide plus added padding

1 Answer

Hi Bobby

The padding on the .col doesn't push it onto the next line is because in the style.css box-sizing: border-box is declared, which means the padding is not added to the width, it is included within the width .col class.

* {
  box-sizing: border-box;
}