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

15 lines
333 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属性创建列
要将Flex容器的子元素堆叠在一起您可以通过以下方式更改_flex方向_
```CSS
#main-container {
display: flex;
flex-direction: column;
}
```