# CSS flex
## Flex 外容器屬性
- ### display:flex;
- ### flex-flow
- #### flex-direction(文字方向)
- column(上至下,左至右)
- column-reverse(column相反)
- row(左至右,上至下)
- row-reverse (row相反)
- #### flex-wrap(換行)
- nowrap(單行)
- wrap(換行)
- wrap-reverse(換行,內容翻轉)
- ### justify-content(水平對其)
- flex-end(對其最左邊)
- flex-start(對其最右邊,預設)
- center(置中)
- space-between(移到兩旁)
- space-around(間距平均)
- ### align-items(單個垂直對其)
- flex-end(對其最下面)
- flex-start(對其最上面)
- center(置中)
- stre