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 trialOmar Talafeeh
1,187 Pointshow can i write a main-nav in a container ?
.
<!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 */
.container {
1 Answer
Garret Witzenburg
Front End Web Development Techdegree Student 6,161 PointsIn the challenge you need to target the main-nav class (.main-nav), and put it in a flex container. The correct answer would be to put:
.main-nav {
display: flex;
}
in your css file.
Austin Whipple
29,725 PointsAustin Whipple
29,725 PointsFormatted your CSS! Be sure to check out the Markdown Cheatsheet for handy formatting tips.