flex布局

flex

1,flex布局又叫弹性布局,一个元素为flex布局时,子元素的float、clear和vertical-align属性没有作用。

列:以float为列

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 300px;

    height: 100px;

    background: #000;

}

.box_child{

    width: 50px;

    height: 50px;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child"></div>

    </div>

</body>

</html>


结果:


当给box_child添加float: right;

结果box_child还在原来位置,并未移到box右边。


2,flex布局下的属性:

2-1,flex-direction规定flex布局下的子元素怎么排列,可选值row , row-reverse ,column , column-reverse。

列:

如果是flex-direction:row;

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 300px;

    height: 100px;

    background: #000;

    flex-direction: row

}

.box_child1{

    width: 50px;

    height: 50px;

    background: red;

}

.box_child2{

    width: 50px;

    height: 50px;

    background:#f2f22f;

}

</style>

<body>

    <div class="box">

        <div class="box_child1"></div>

        <div class="box_child2"></div>

    </div>

</body>

</html>

结果:


如果是flex-direction:row-reverse;



如果是flex-direction:column;



如果是flex-direction:column-reverse;


2-2,flex-wrap定义如果一条轴线排不下,如何换行,可选值 nowrap , wrap ,wrap-reverse,默认是nowrap。

列:

如果是flex-wrap:nowrap;

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 250px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    flex-wrap: nowrap;

}

.box_child{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child">1</div>

        <div class="box_child">2</div>

        <div class="box_child">3</div>

        <div class="box_child">4</div>

        <div class="box_child">5</div>

        <div class="box_child">6</div>

    </div>

</body>

</html>

结果:



box_child宽度变小,不换行。

如果是wrap:


box_child换行。

如果是wrap-reverse


box_child换行且从下往上排。


2-3,justify-content定义了子元素在主轴上的对齐方式,可选值有 flex-start , flex-end , center ,space-between , space-around;

列:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 250px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: flex-start;

}

.box_child{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child">1</div>

        <div class="box_child">2</div>

        <div class="box_child">3</div>

    </div>

</body>

</html>

结果:


child_box从开始位置对齐

如果是justify-content: flex-end;


child_box从结束位置对齐

如果是justify-content: center;


child_box居中排列。

如果是 justify-content: space-between;


child_box两端对齐且主轴方向相隔距离相等

如果是justify-content: space-around;


每两个项目之间的间隔相等,上图看不出来,我们将box宽度设为600px,结果


2-4,align-items定义子元素在交叉轴上如何对齐,可选值flex-start , flex-end,center ,baseline , stretch。

列:

如果是align-items:flex-start;

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 300px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: space-around;

    align-items: flex-start

}

.box_child1{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

.box_child2{

    width: 50px;

    height: 100px;

    border: 1px solid #ddd;

    background: red;

}

.box_child3{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

.box_child4{

    width: 50px;

    height: 150px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child1">1</div>

        <div class="box_child2">2</div>

        <div class="box_child3">3</div>

        <div class="box_child4">4</div>

    </div>

</body>

</html>

结果:


可见child_box,从起始位置左上角,左往右排列,如果把上面的代码box的 flex-direction: row;改为 flex-direction: row-reverse;结果:



child_box从右往左排列。

如果是box的 flex-direction: row;align-items: flex-end;


child_box从左往右排列且起始位置在左下角。

如果是box的align-items: center;


从box的中部左往右排列,

另外

baseline定义子元素的第一行文字的基线对齐。

stretch定义如果子元素未设置高度或设为auto,那么子元素的高度将占满整个容器的高度。

2-5,align-content定义多根轴线的对齐方式,如果项目只有一根轴线,该属性无效,可选flex-start, flex-end , center , space-between ,space-around ,stretch;

flex-start:与交叉轴的起点对齐。

flex-end:与交叉轴的终点对齐。

center:与交叉轴的中点对齐。

space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。

space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。

stretch(默认值):轴线占满整个交叉轴。


3,如果定义了flex布局,那么它的子元素可选择属性有以下几种。

order定义子元素的排列顺序数值越小排列越靠前。

列:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 400px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: flex-start;

    align-items: flex-start;

}

.box_child1{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

    order: 1;

}

.box_child2{

    width: 50px;

    height: 100px;

    border: 1px solid #ddd;

    background: red;

    order: 0;

}

.box_child3{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

    order: 2;

}

.box_child4{

    width: 50px;

    height: 150px;

    border: 1px solid #ddd;

    background: red;

    order: 2;

}

</style>

<body>

    <div class="box">

        <div class="box_child1">1</div>

        <div class="box_child2">2</div>

        <div class="box_child3">3</div>

        <div class="box_child4">4</div>

    </div>

</body>

</html>

结果:



flex-grow定义子元素的放大比例,将上面的元box_child1,box_child2,box_child3元素加上flex-grow:1,box_child4加上flex-grow:2;如果box有剩余空间那么box_child4占据的空间是其他的一倍

结果:



flex-shrink语flex-grow相反,是定义子元素缩小比例,如果box没有剩余空间,那么定义缩小的元素就缩小。


flex-basis它定义了在分配多余空间之前,子元素占据的主轴空间,根据这个计算主轴是否有多余空间,默认值为auto,即项目的本来大小。

我平常常用的flex,其实是flex-grow, flex-shrink 和 flex-basis的简写。

列:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 400px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: flex-start;

    align-items: flex-start;

}

.box_child1{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

.box_child2{

    flex: 1;

    height: 100px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child1">1</div>

        <div class="box_child2">2</div>

    </div>

</body>

</html>

结果:


所以flex:1就是写了以下属性

flex-grow: 1;

flex-shrink: 1;

flex-basis: 0%;


align-self定义子元素的对齐方式,如果跟父元素的方式一样那么设置auto就行,当然如果不一样可以选择 flex-start, flex-end , center , baseline , stretch。设置这个属性的结果跟在flexbox中设置align-item的结果一样。当你想让子元素不一样时就可以选择这个属性。

列:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 400px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: flex-start;

    align-items: flex-start;

}

.box_child1{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

.box_child2{

    width: 50px;

    height: 100px;

    border: 1px solid #ddd;

    background: red;

}

.box_child3{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

    align-self: flex-end

}

.box_child4{

    width: 50px;

    height: 150px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child1">1</div>

        <div class="box_child2">2</div>

        <div class="box_child3">3</div>

        <div class="box_child4">4</div>

    </div>

</body>

</html>

结果:



相信大部分人面试的时候都遇到垂直水平居中的问题,那么利用flex如何实现,其实利用 justify-content: center;

    align-items: center;

列:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>测试flexbox</title>

</head>

<style>

.box{

    display: flex;

    width: 400px;

    height: 400px;

    background: #000;

    padding: 20px;

    flex-direction: row;

    justify-content: center;

    align-items: center;

}

.box_child1{

    width: 50px;

    height: 50px;

    border: 1px solid #ddd;

    background: red;

}

</style>

<body>

    <div class="box">

        <div class="box_child1">1</div>

    </div>

</body>

</html>


结果:


flex布局之前我也觉得复杂,项目中用得少,当用得多了,flex布局就越来越熟练,但是仍有不足,因此写这篇文章,意在复习和巩固flex布局的知识。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,468评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,620评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,427评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,160评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,197评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,334评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,775评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,444评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,628评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,459评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,508评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,210评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,767评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,850评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,076评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,627评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,196评论 2 341

推荐阅读更多精彩内容