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

What was the reason for the 2nd column STILL appearing below the 1st column after changing the display to inline-block?

.

1 Answer

Steven Parker
Steven Parker
229,644 Points

The "gutter" space between the columns is the reason they don't fit originally. The 50% width setting only applies to the elements themselves and does not account for the gutter space. So the total size is more than 100% until the negative margin is applied to consume the gutter.

All the list items combined still don't exceed 100% of the width, so they don't have this issue.