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 Understanding Flexbox Flex Container Challenge

Can someone please help me with this question? I don't understand what it is asking.

I would like to figure out this question please and thank you.

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Flexbox Layout</title>
    <link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <header>
      <ul class="main-nav">
        <li class="name"><a href="#">My Site</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Work</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </header>
  </body>
</html>
style.css
/* Complete the challenge by writing CSS below */

2 Answers

Steven Parker
Steven Parker
230,995 Points

Assuming you want a hint, and not an outright spoiler:

:point_right: The CSS property that identifies a flex container is display: flex;

If you're not already familar with targeting elements using CSS selectors, you might enjoy taking the CSS Basics course before this one.

Oh and don't forget you can switch to the CSS file using the tabs above the code editor area. That's where you'll be making the actual changes. The HTML file is there for reference. They probably should have made the CSS file the default, but I guess you also need to get used to jumping back and forth between the HTML and CSS files to know which selectors you need.