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 Layout Techniques Flexbox Layout Flexbox Layout Challenge

Devin Scheu
Devin Scheu
66,191 Points

Help With Flexbox

Question: Next, use the flexbox property and value that gives every list item inside main-nav evenly distributed widths.

My Code:

@media (min-width: 611px) {

    /* Complete the challenge by writing CSS below */
  .main-nav {
    display: flex;
    flex-grow: 1;
  }

2 Answers

idan ben yair
idan ben yair
10,288 Points

Hi Devin,

You are missing the li selector.

Let me know if that worked :)

Hi Devin,

Task 1 is dealing with .main-nav but task 2 is dealing with the list items within .main-nav

So you need a new css rule that targets those list items and you would put your flex-grow property in there.