Files
2018-10-16 21:32:40 +05:30

15 lines
593 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Use the flex-direction Property to Make a Column
localeTitle: Используйте свойство flex-direction для создания столбца
---
## Используйте свойство flex-direction для создания столбца
Чтобы стекировать дочерние элементы вашего гибкого контейнера друг над другом, вы измените направление _гибки_ следующим образом:
```CSS
#main-container {
display: flex;
flex-direction: column;
}
```