容器属性
控制排序 flex-direction:row|row-reverse|column|column-reverse
是否换行 flex-wrap:nowrap|wrap|wrap-reverse
简写flex-direction和flex-wrap: flex-flow:row nowrap
在横轴对齐方式 justify-content:flex-start|flex-end|center|space-between|space-around|space-evenly
在纵轴排列方式 align-items:stretch(高度为auto,占满容器)|flex-start|flex-end|center(垂直居中)|baseline
多行项目排列align-content :stretch | flex-start | flex-end | center | space-between | space-around | space-evenly
注:如果我们修改了flex-direction为column,它们处理的轴向会交换,也就是justify-content处理纵轴,align-items处理横轴。
项目属性
order:默认0,数值越小越靠前
flex-grow:默认0不放大,改为1就放大到填满空间
flex-shrink:默认1,默认都等比缩小,设置0时不缩小
缩写 flex:默认0 1 auto是flex-grow,flex-shrink与flex-basis的简写
align-self:auto(默认) | flex-start | flex-end | center | baseline | stretch,表示继承父容器的align-items属性。如果没父元素,则默认stretch。
相关文章
- 01-24每日笔记:2020.10.28
- 01-24Python基础教程【读书笔记】 - 2016/7/7
- 01-24C++ Primer 学习笔记_85_模板与泛型编程 --模板特化[续]
- 01-24ruoyi偌衣学习笔记
- 01-24嵌入式开发笔记——MCU配置Altera-Cyclone系列FPGA(PS)
- 01-24991_MISRA C规范学习笔记4
- 01-24Kafka笔记7(构建数据管道)
- 01-24数据仓库基础知识学习笔记
- 01-24学习笔记15.内部类
- 01-24JVM 调优以及问题排查笔记