freeCodeCamp/guide/chinese/certifications/responsive-web-design/css-flexbox/use-the-flex-direction-prop.../index.md

333 B
Raw Blame History

title localeTitle
Use the flex-direction Property to Make a Column 使用flex-direction属性创建列

使用flex-direction属性创建列

要将Flex容器的子元素堆叠在一起您可以通过以下方式更改_flex方向_

#main-container { 
    display: flex; 
    flex-direction: column; 
 }