在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
为了做移动端的前端项目开始学flex啦~!用了flex,再也不用担心排版啦。一起来快速上手吧! 在css上使用flex的语法 display: flex; /*按照需求加入各浏览器需求前缀*/ flex-direction flex-direction:row;
flex-direction:row-reverse;
flex-direction:column;
flex-direction:column-reverse;
flex-wrap 设置或检索伸缩盒对象的子元素超出父容器时是否换行。 flex-wrap:nowrap;
flex-wrap:wrap;
flex-wrap:wrap-reverse;
flex-flow 相当于direction和wrap的集合 justify-content 设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。 justify-content:flex-start;
justify-content:flex-end;
justify-content:center;
justify-content:space-between;
justify-content:space-around;
align-items 设置或检索弹性盒子元素在侧轴(纵轴)方向上的对齐方式。 align-items:flex-start;
align-items:flex-end;
align-items:center;
align-items:baseline;
align-items:strecth;
align-content 设置或检索弹性盒堆叠伸缩行的对齐方式。 align-content:flex-start;
align-content:flex-end;
align-content:center;
align-content:space-between;
align-content:space-around;
align-content:strecth;
flex-grow 设置或检索弹性盒的扩展比率。根据弹性盒子元素所设置的扩展因子作为比率来分配剩余空间。flex-grow的默认值为0,如果没有显示定义该属性,是不会拥有分配剩余空间权利的。本例中b,c两项都显式的定义了flex-grow,可以看到总共将剩余空间分成了4份,其中b占1份,c占3分,即1:3
flex-shrink 设置或检索弹性盒的收缩比率(根据弹性盒子元素所设置的收缩因子作为比率来收缩空间。 flex-basis 设置或检索弹性盒伸缩基准值。如果所有子元素的基准值之和大于剩余空间,则会根据每项设置的基准值,按比率伸缩剩余空间
flex(复合属性) flex:none | [ flex-grow ] || [ flex-shrink ] || [ flex-basis ] 以上这篇CSS3弹性盒模型flex box快速入门心得(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持极客世界。 原文地址:http://www.cnblogs.com/daisykoo/archive/2016/05/24/5522660.html |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论