--- id: 587d78ac367417b2b2512af4 title: Use the flex-direction Property to Make a Column challengeType: 0 videoUrl: https://scrimba.com/p/pVaDAv/cZmWeA4 forumTopicId: 301109 localeTitle: Используйте свойство flex-direction для создания столбца --- ## Description
В предыдущих задачах свойство flex-direction использовалось для создание рядов. С помощью этого свойства также можно создавать столбцы, размещая дочерние элементы "гибкого" контейнера вертикально один под другим.
## Instructions
Добавьте CSS свойство flex-direction к элементу #box-container и задайте ему значение column.
## Tests
```yml tests: - text: The #box-container element should have a flex-direction property set to column. testString: assert($('#box-container').css('flex-direction') == 'column'); ```
## Challenge Seed
```html
```
## Solution
```html
```