关于flex布局

Flex 布局详解

2009年,W3C提出了一种新的方案—-Flex布局,可以简便、完整、响应式地实现各种页面布局。目前,它已经得到了所有浏览器的支持,这意味着,现在就能很安全地使用这项功能。

Flex是Flexible Box的缩写,意为”弹性布局”,用来为盒状模型提供最大的灵活性。

任何一个容器都可以指定为Flex布局。

.box{
  display: flex;
}

行内元素也可以使用Flex布局。

.box{
  display: inline-flex;
}

Webkit内核的浏览器,必须加上-webkit前缀。

.box{
  display: -webkit-flex; /* Safari */
  display: flex;
}

注意,设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。

二、基本概念

采用Flex布局的元素,称为Flex容器(flex container),简称”容器”。它的所有子元素自动成为容器成员,称为Flex项目(flex item),简称”项目”。

容器默认存在两根轴:水平的(横)轴(main axis)和垂直的(竖)轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。

项目默认沿主轴排列。单个项目占据的主轴空间叫做main size,占据的交叉轴空间叫做cross size。

三、容器的属性

以下6个属性设置在容器上。

  • flex-direction: 容器主轴的方向
  • flex-wrap: 是否换行
  • flex-flow: 设置主轴及其是否换行
  • justify-content: 主轴上的对齐方式
  • align-items: 侧轴上的对齐方式

3.1 flex-direction属性

flex-direction属性决定主轴的方向(即项目的排列方向),当主轴确定后,另外一根轴则为侧轴。

它可能有4个值。

  • row(默认值):主轴为水平方向,起点在左端。
  • row-reverse:主轴为水平方向,起点在右端。
  • column:主轴为垂直方向,起点在上沿。
  • column-reverse:主轴为垂直方向,起点在下沿。

代码如下:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #container {
            width: 300px;
            height: 300px;
            background-color: pink;
            /*
            开启flex弹性布局
            */
            display: flex;
            flex-direction: row;          
        }

        #container>div {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            color: white;
        }
        #container>div:nth-child(1){
            background-color: red;
        }
        #container>div:nth-child(2){
            background-color: orange;
        }
        #container>div:nth-child(3){
            background-color: yellow;
        }
        #container>div:nth-child(4){
            background-color: green;
        }
        #container>div:nth-child(5){
            background-color: blue;
        }
    </style>
</head>

<body>
    <div id="container">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

</html>

页面效果:row(默认值):主轴为水平方向,起点在左端,从左向右排列。

 flex-direction: row-reverse; 主轴为水平方向,起点在右端,从右向左排列

 flex-direction: column; 主轴为垂直方向,起点在上端。从上往下排列。

 

 flex-direction: column-reverse;主轴为垂直方向,起点在下端,从下往上排列。

3.2 flex-wrap属性

默认情况下,项目都排在一条线(又称”轴线”)上。flex-wrap属性定义,如果一条轴线排不下,如何换行。

它可能取三个值。

(1)nowrap(默认):不换行。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #container {
            width: 300px;
            height: 300px;
            background-color: pink;
            /*
            开启flex弹性布局
            */
            display: flex;
            flex-direction: row;  
            flex-wrap: nowrap;           
        }

        #container>div {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            color: white;
        }
        #container>div:nth-child(1){
            width: 200px;
            background-color: red;
        }
        #container>div:nth-child(2){
            background-color: orange;
        }
        #container>div:nth-child(3){
            background-color: yellow;
        }
        #container>div:nth-child(4){
            background-color: green;
        }
        #container>div:nth-child(5){
            background-color: blue;
        }
    </style>
</head>

<body>
    <div id="container">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

</html>

页面效果: 依旧以主轴(横轴)为参照物,方向从左往右排列,只不过会被挤压。

2) flex-wrap: wrap; 换行,第一行在上方。

3)flex-wrap: wrap-reverse; 换行,第一行在下方。

 

3.3 flex-flow

flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。

.box {
  flex-flow: <flex-direction> <flex-wrap>;
}

3.4 justify-content属性

justify-content属性定义了项目在主轴上的对齐方式。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #container {
            width: 300px;
            height: 300px;
            background-color: pink;
            /*
            开启flex弹性布局
            */
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
        }

        #container>div {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            color: white;
        }
        #container>div:nth-child(1){
            background-color: red;
        }
        #container>div:nth-child(2){
            background-color: orange;
        }
        #container>div:nth-child(3){
            background-color: yellow;
        }
        #container>div:nth-child(4){
            background-color: green;
        }
        #container>div:nth-child(5){
            background-color: blue;
        }
    </style>
</head>

<body>
    <div id="container">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

</html>

justify-content: flex-start; 基于主轴的起点对齐。主轴现在为X轴,起点在左端。因此为左对齐排列。

justify-content: flex-end; 基于主轴的终点对齐。主轴现在为X轴,终点在右端。因此为右对齐排列。

 

justify-content: center; 基于主轴居中对齐。主轴现在为X轴。

 

 justify-content: space-between; 基于主(X)轴两端对齐,项目之间的间隔都相等。

justify-content: space-around; 每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。

 

3.5 align-items属性

align-items属性定义项目在交叉轴上如何对齐。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #container {
            width: 300px;
            height: 300px;
            background-color: pink;
            /*
            开启flex弹性布局
            */
            display: flex;
            flex-direction: row;
            align-items: flex-start;
        }

        #container>div {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            color: white;
        }
        #container>div:nth-child(1){
            background-color: red;
        }
        #container>div:nth-child(2){
            background-color: orange;
        }
        #container>div:nth-child(3){
            background-color: yellow;
        }
        #container>div:nth-child(4){
            background-color: green;
        }
        #container>div:nth-child(5){
            background-color: blue;
        }
    </style>
</head>

<body>
    <div id="container">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

</html>

由于主轴是X轴,而且元素是沿着主轴的方向排列,所以依旧是横着排。

align-items: flex-start; 表示项目在侧(Y)轴上,基于起点对齐。起点在上。

 align-items: flex-end; 表示项目在侧(Y)轴上,基于终点对齐。终点在下。

align-items: center; 在侧轴上居中对齐

 baseline: 项目的第一行文字的基线对齐。

align-items: stretch; (默认值)如果项目未设置高度或设为auto,将占满整个容器的高度。

四、项目的属性

4.1 order属性

order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。

 order: -1; 由于蓝色项目的order设置-1,最小,所以最先排列。

4.2 flex-grow属性

flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。

flex-grow: 1; 由于蓝色项目的值为1,其单独占据所有剩余空间

 

4.3 flex-shrink属性

flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。

如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。

负值对该属性无效。

父容器宽度200px,共有5个子元素,每个子元素宽度为50px情况下:

第一个子元素(红色) flex-shrink: 0;不缩小。其他元素flex-shrink: 1; 缩小。

 

4.4 flex-basis属性

flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。它可以设为跟width或height属性一样的值(比如350px),则项目将占据固定空间。

4.6 align-self属性

align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #container {
            width: 200px;
            height: 300px;
            background-color: pink;
            /*
            开启flex弹性布局
            */
            display: flex;
            flex-direction: row;
        }

        #container>div {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            color: white;
        }
        #container>div:nth-child(1){
            background-color: red;
        }
        #container>div:nth-child(2){
            background-color: orange;
        }
        #container>div:nth-child(3){
            background-color: yellow;
        }
        #container>div:nth-child(4){
            background-color: green;
        }
        #container>div:nth-child(5){
            align-self: flex-end;
            background-color: blue;
        }
    </style>
</head>

<body>
    <div id="container">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

</html>

 第五个元素(蓝色)设置了自己基于侧(Y)轴的对齐方式,终点对齐,所以跑到下面去了。

由此,flex布局差不多介绍完毕。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值