
Susan White
2,872 Pointsbug in 2 of 3 for flexbox layout add property to make multiline layout would be flex-direction: column; is not working
I answered Task 1 which creates flexbox container. Task 2 asks to add property and value to change it to a multi-column layout. So I added flex-direction: column; and it says it is wrong. I have no spelling or syntax errors. help. can't get past it.
/* Complete the challenge by writing CSS below */
.row {
display: flex;
flex-direction: column;
}
<!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

KRIS NIKOLAISEN
54,545 PointsSee the previous video @ 2:56

Jennifer Nordell
Treehouse TeacherSusan White I think the problem might be in the interpretation of the instructions. It says to use the property that changes this to a multi-line, but in your question, you appear to have read that as multi-column.
The documentation on the property you are looking for can be found here
Hope this helps!
Susan White
2,872 PointsSusan White
2,872 Pointsnot helpful bc I have watched it twice and still draw same conclusion.