热搜词
发表于 2022-7-28 23:07:15 | 显示全部楼层 |阅读模式
什么是flex布局
flex布局即为弹性布局,使用display:flex进行布局,此布局使得盒模型布局更易使用。值得注意的是设为flex布局后,子元素的float、clear和vertical-align属性将失效。

flex的使用
当元素使用flex后,该元素则成为flex容器(container),其容器属性有:flex-direction、flex-wrap、flex-flow、justify-content、align-items、align-content。该容器中的元素则成为flex项目(item),其项目属性有:order、flex-grow、flex-shrink、flex-basis、flex、align-self(此6属性父元素必须为flex容器,否则失效),下面仅对容器属性做说明。

flex-direction
共有4个值:row(默认值) | row-reverse | column | column-reverse;
flex-direction:row,从左至右依次排列。
1769804-20220228163927174-1063993979.png
flex-direction:row-reverse,从右到左依次排列。
1769804-20220228163953064-215271099.png
flex-direction:column;从上到下依次排列。
1769804-20220228164017226-2050245726.png
flex-direction:column-reverse;从下到上依次排列
1769804-20220228164037441-2112659834.png
flex-wrap
共有3个值:nowrap(默认值) | wrap | wrap-reverse;
flex-wrap: nowrap;不换行。
1769804-20220228164055786-176131788.png
flex-wrap:wrap ;换行。
1769804-20220228164117513-1671166807.png
flex-wrap: wrap-reverse;换行,但第一排在下面。
1769804-20220228164150623-589789519.png
flex-flow
该属性是flex-direction与flex-wrap属性的简写,flex-flow有他们所有的值。
justify-content
该属性有五个值:flex-start(默认值) | flex-end | center | space-between | space-around;
justify-content:flex-start;左对齐
1769804-20220228164213062-289611356.png
justify-content:flex-end;右对齐。
1769804-20220228164230515-725977311.png
justify-content:center;居中。
1769804-20220228164252216-1549276656.png
justify-content:space-between;均匀分布,但没有额外margin。
1769804-20220228164306175-408115644.png
justify-content:space-around; 均匀分布,有额外margin。
1769804-20220228164327389-278469999.png
align-items
五个值:flex-start | flex-end | center | baseline | stretch(默认值);
align-items:flex-start;顶部对齐
1769804-20220228164403030-820459054.png
align-items:flex-end;底部对齐
1769804-20220228164431059-1689750567.png
align-items:center;垂直居中
1769804-20220228164506632-956777180.png
align-items:stretch;若子元素未设置高或为auto,将占满整个容器的高度。
1769804-20220228164554566-1452699770.png
align-items:baseline;子元素第一行文字基线对齐。
1769804-20220228164621481-587695581.png
align-content
共6个值:flex-start | flex-end | center | space-between | space-around | stretch(默认值);
align-content:flex-start;从顶部对齐。
1769804-20220228164647457-1226211404.png
align-content:flex-end;从底部对齐。
1769804-20220228164703043-444744951.png
align-content:center;从中部对齐。
1769804-20220228164717789-841259542.png
align-content:space-between;顶部底部都占用。
1769804-20220228164809326-1892733043.png
align-content:space-around;均匀分布。
1769804-20220228164828268-687722513.png
align-content:stretch;子元素无高度时自动铺满。
1769804-20220228164851736-1763486506.png

全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2025-1-16 00:16 , Processed in 0.195224 second(s), 25 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2025 Discuz! Team