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 trialRiccardo Rossetti
Courses Plus Student 4,045 PointsNext, use the flexbox property and value that gives every list item inside main-nav evenly distributed widths.
@media (min-width: 611px) {
.main-nav { display: flex; flex-grow: 2; }
}
2 Answers
Robert Russell
8,958 Pointswrong selector, flex-grow 1. watch the video over
Timothy Wilson
10,955 Pointsyou are missing the list item selector
.main-nav li {-webkit-flex-grow: 1;}
Riccardo Rossetti
Courses Plus Student 4,045 PointsRiccardo Rossetti
Courses Plus Student 4,045 Pointswhy is it wrong?