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 Flexbox Properties Wrapping Items and Distributing Space

linda Tsai
linda Tsai
2,504 Points

How come my answer is incorrect? I thought this is correct: flex-direction: column;

Did anyone put the same answer as I did and got it right?

style.css
/* Complete the challenge by writing CSS below */

.row {
  display: flex;
  flex-direction: column;
}
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>
  <div class="row">
    <div class="item">Item 1</div>
    <div class="item">Item 2</div>
    <div class="item">Item 3</div>
    <div class="item">Item 4</div>
    <div class="item">Item 5</div>
    <div class="item">Item 6</div>
  </div>
</body>
</html>

2 Answers

andren
andren
28,558 Points

Did anyone put the same answer as I did and got it right?

No, but you aren't the first to ask about this exact thing, in fact somebody (with the exact same code) made a post earlier this week.

I'll provide the same asnwer here that I proivded in that post:

A flex contained will always try to fit its items within a single line, changing the flex-direction only changes the direction of said line. It does not change the fact that it still does not wrap to other lines when it runs out of space.

The property that controls that behavior is flex-wrap. By setting flex-wrap to wrap flex will wrap to another line If it runs out of space.