333 B
333 B
title, localeTitle
title | localeTitle |
---|---|
Use the flex-direction Property to Make a Column | 使用flex-direction属性创建列 |
使用flex-direction属性创建列
要将Flex容器的子元素堆叠在一起,您可以通过以下方式更改_flex方向_ :
#main-container {
display: flex;
flex-direction: column;
}