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

Help! Code Challenge: Flexbox Layout

First, let's establish a flex formatting context. Give main-nav the display value that converts its list items into flex items.

This is what I have:

@media (min-width: 611px) {

/* Complete the challenge by writing CSS below */

.main-nav { display: flex; flex-grow: 1; }

}

3 Answers

Oskars Rukmans
Oskars Rukmans
8,288 Points

it wants list items to be selected. add li after .main-nav selector

.main-nav li {.......

Manar AL Saleh
PLUS
Manar AL Saleh
Courses Plus Student 9,603 Points

you can do it this way, it will work ...

.main-nav { display: flex; } .main-nav li { flex-grow: 1; }

Oskars, Thank you!! I realized that right after I posted this! :) Thank you for your answer though!