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 Flexbox Layout Building a Layout with Flexbox Building a Navigation Bar with Flexbox

Nick Huemmer
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Nick Huemmer
Front End Web Development Techdegree Graduate 26,840 Points

Why does 'justify-content: space-between' in the .main-header min-width: 1025px media query create such a large space?

Why does 'justify-content: space-between' in the .main-header min-width: 1025px media query create such a large space in between the name and main-nav elements? They spread to the opposite sides of the page, which in previous flexbox examples, 'space-between' didn't make such are large separation between items.

Did you happen to figure out why the behavior is like this?

1 Answer

Johnny Austen
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Johnny Austen
Front End Web Development Techdegree Graduate 35,494 Points

My best guess is that .main-header has two children - the h1, and the ul. Perhaps "space-between" is providing half the width of the container between them, and therefore each child is pushed to the far sides of the container.