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 trialCarlos Williamson
810 PointsI'm not sure how to proceed.
Can I move forward without completing the exercise?
<!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>
/* Complete the challenge by writing CSS below */
2 Answers
Jennifer Nordell
Treehouse TeacherYou just need to make the element with the class "main-nav" into a flex container. You do this by targeting the class and then setting the display value to flex. `This is done in your CSS file.
.main-nav {
display: flex;
}
jcorum
71,830 PointsFirst you click on the style.css tab. Then you write a rule, as discussed in the video:
.main-nav {
display: flex;
}
This rule selects (or targets) the elements that have a class="main-nav" attribute.
In this exercise there's only one such element:
<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>
Carlos Williamson
810 PointsThank you, jcorum. I appreciate it.
Carlos Williamson
810 PointsCarlos Williamson
810 PointsThank you, Jennifer.