Flex布局是什么?
基本概念
<div class="box">
<div class="item one">项目1</div>
<div class="item two">项目2</div>
<div class="item three">项目3</div>
<div class="item four">项目4</div>
</div>
.box {
width: 300px;
height: 300px;
background: aqua;
display: flex;
}
.item {
width: 50px;
height: 50px;
background: rgb(243, 62, 92);
font-size: 13px;
color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.box .one {
background: red;
}
.box .two {
background: coral;
}
.box .three {
background: forestgreen;
}
容器的属性
- 容器有6个属性,容器可以当做是父盒子,就是设置了display: flex 属性的盒子。
flex-direction
- 决定主轴的方向(即项目的排列方向)
flex-direction属性有四个值:
当 box 的 flex-direction 设成 row
当 box 的 flex-direction 设成 row-reverse
当 box 的 flex-direction 设成 column
当 box 的 flex-direction 设成 column-reverse
flex-wrap
- 定义子盒子的换行情况
flex-wrap属性有三个值:
当 box 的 flex-wrap 设成 nowrap 成员没有达到换行的宽度不会有影响,但是如果总宽度超过了父盒子,成员将被挤压,比如再添加几个成员
<div class="item one">项目1</div>
<div class="item two">项目2</div>
<div class="item three">项目3</div>
<div class="item four">项目4</div>
<div class="item four">项目5</div>
<div class="item four">项目6</div>
<div class="item four">项目7</div>
<div class="item four">项目8</div>
当 box 的 flex-wrap 设成 wrap, 这里我把父盒子高去掉了,被分成两行隔太开了,不好看
当 box 的 flex-wrap 设成 wrap-reverse
flex-flow
- 是flex-direction和flex-wrap的简写, 默认值为row nowrap。
.box {
flex-flow: <flex-direction> <flex-wrap>;
}
justify-content
- 设置成员在主轴上的对齐方式
justify-content属性有五个值:
align-items
- align-items属性定义成员在交叉轴(主轴为x轴的话,交叉轴就是y轴)上如何对齐。
align-items属性有五个值:
align-content
- align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。也就是说如果成员只有一行那么这个属性就没有什么用,下面又把成员设置为8个,并让它们换行
align-content属性有六个值:
项目的属性
- 项目(成员、子盒子)有六个属性
order
.box .one {
background: chocolate;
order: 4;
}
.box .two {
background: coral;
order: 1;
}
.box .three {
background: forestgreen;
order: 3;
}
.box .four {
background: red;
order: 2;
}
flex-grow
- flex-grow属性定义成员的放大比例,默认为0,即如果存在剩余空间,也不放大。
- 如果所有成员的flex-grow属性都为1,则它们将等分剩余空间(如果有的话)。如果一个成员的flex-grow属性为2,其他项目都为1,则前者占据的剩余空间将比其他项多一倍。
flex-shrink
- flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。
- 如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。
- 此属性设置负值无效。
flex-basis
- flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
- 也就是说在成员要平分这个容器剩余空间时,可以通过flex-basis属性先给其中个别成员占一个空间,再去参与平分剩余的空间,平分完之后个别成员再加上前面占的空间才是添加了flex-basis属性的成员最终大小
- 它可以设为跟width或height属性一样的值(比如50px),则项目将占据固定空间。
.box .one {
background: chocolate;
flex: 1;
}
.box .two {
background: coral;
flex: 1;
flex-basis: 50px;
}
.box .three {
background: forestgreen;
flex: 1;
}
.box .four {
background: red;
flex: 1;
}
flex
- flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。
- flex:1(表示所有成员将平分剩余空间)
align-self
- align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
- 该属性可能取6个值,除了auto,其他都与align-items属性完全一致。
.item {
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 模板不会安装或需要功能定制以及二次开发?
发表评论
还没有评论,快来抢沙发吧!