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 trialNick Huemmer
Front End Web Development Techdegree Graduate 26,840 PointsWhy 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.
1 Answer
Johnny Austen
Front End Web Development Techdegree Graduate 35,494 PointsMy 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.
Kirt Perez
7,374 PointsKirt Perez
7,374 PointsDid you happen to figure out why the behavior is like this?