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

333 B
Raw Blame History

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; 
 }