Flexbox布局兼容性总结

写在前面

IE9不支持…试了一下flexibility库,发现支持还好,就是嵌套的时候会有问题,因为它是通过定位的方式,暂时无解……

入门教程

传送门

W3C各个版本的flex

2009 version

标志:display: box; or a property that is box-{*} (eg. box-pack)

2011 version

标志:display: flexbox; or the flex() function or flex-pack property

2012 version

标志:display: flex/inline-flex; and flex-{*} properties

2014 version

新增了对flex项z-index的规定

2015 W3C Editor’s Draft

没有大的改动

P.S.注意2015的是W3C Editor’s Draft,只是个草案,还处于修修改改的阶段,还没有征集浏览器供应商的意见。

浏览器兼容性

关于flex的W3C规范: http://dev.w3.org/csswg/css-flexbox-1/

浏览器兼容性可以参考CanIUse: http://caniuse.com/#feat=flexbox

根据CanIUse的数据可以总结如下:

IE10部分支持2012,需要-ms-前缀

Android4.1/4.2-4.3部分支持2009 ,需要-webkit-前缀

Safari7/7.1/8部分支持2012, 需要-webkit-前缀

IOS Safari7.0-7.1/8.1-8.3部分支持2012,需要-webkit-前缀

所以需要考虑新版本2012: http://www.w3.org/TR/2012/CR-css3-flexbox-20120918/

而Android需要考虑旧版本2009: http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/

浏览器兼容的flex语法

上面分析得很清楚,针对需要兼容的目标使用对应版本的语法就好了,下面给出常用的布局代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* 子元素-平均分栏 */
.flex1 {
-webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex: 1; /* OLD - Firefox 19- */
width: 20%; /* For old syntax, otherwise collapses. */
-webkit-flex: 1; /* Chrome */
-ms-flex: 1; /* IE 10 */
flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列(主轴) */
.flex-h {
display: box; /* OLD - Android 4.4- */
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
/* 09版 */
-webkit-box-orient: horizontal;
/* 12版 */
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
-o-flex-direction: row;
flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
/* 09版 */
/*-webkit-box-lines: multiple;*/
/* 12版 */
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
/* 父元素-水平居中(主轴是横向才生效) */
.flex-hc {
/* 09版 */
-webkit-box-pack: center;
/* 12版 */
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-o-justify-content: center;
justify-content: center;
/* 其它取值如下:
align-items 主轴原点方向对齐
flex-end 主轴延伸方向对齐
space-between 等间距排列,首尾不留白
space-around 等间距排列,首尾留白
*/
}
/* 父元素-纵向排列(主轴) */
.flex-v {
display: box; /* OLD - Android 4.4- */
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
/* 09版 */
-webkit-box-orient: vertical;
/* 12版 */
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
/* 09版 */
/*-webkit-box-lines: multiple;*/
/* 12版 */
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
/* 父元素-竖直居中(主轴是横向才生效) */
.flex-vc {
/* 09版 */
-webkit-box-align: center;
/* 12版 */
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
-o-align-items: center;
align-items: center;
}
/* 子元素-显示在从左向右(从上向下)第1个位置,用于改变源文档顺序显示 */
.flex-1 {
-webkit-box-ordinal-group: 1; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-ordinal-group: 1; /* OLD - Firefox 19- */
-ms-flex-order: 1; /* TWEENER - IE 10 */
-webkit-order: 1; /* NEW - Chrome */
order: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右(从上向下)第2个位置,用于改变源文档顺序显示 */
.flex-2 {
-webkit-box-ordinal-group: 2; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-ordinal-group: 2; /* OLD - Firefox 19- */
-ms-flex-order: 2; /* TWEENER - IE 10 */
-webkit-order: 2; /* NEW - Chrome */
order: 2; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
为了更好的兼容性,我们需要给容器声明flex-h/flex-v,而不是一般的flex:
/* 父元素-flex容器 */
.flex {
display: box; /* OLD - Android 4.4- */
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

所以,建议在需要兼容Android时(2009版语法)采用flex-h/flex-v声明容器使用flex模式,在不需要兼容Android时(2012版语法)使用flex设置容器

注意:上面给的代码并不是完全兼容各个高端浏览器的,但要比任何其它现有代码兼容性好,具体兼容性测试结果请看Demo

sass定义

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@mixin flex{
display: box; /* old - Android 4.4- */
display: -webkit-box; /* old - IOS 6-, Safari 3.1-6 */
display: -moz-box; /* old - Firefox 19 - (buggy but most works) */
display: -ms-flexbox; /* IE 10 */
display: -webkit-flex; /* New - Chrome */
display: flex;
-js-display: flex;
}
@mixin flexDirection($type: row){
/* 09版 */
@if $type == 'row'{
-webkit-box-orient: horizontal;
}@else if $type == 'row-reverse'{
-webkit-box-orient: horizontal;
}@else if $type == 'column'{
-webkit-box-orient: vertical;
}@else if $type == 'column-reverse'{
-webkit-box-orient: vertical;
}
/* 12版 */
-webkit-flex-direction: $type;
-moz-flex-direction: $type;
-ms-flex-direction: $type;
-o-flex-direction: $type;
flex-direction: $type;
-js-flex-direction: $type;
}
@mixin flexWrap($type: nowrap){
/* 09版 */
/*-webkit-box-lines: multiple;*/
/* 12版 */
-webkit-flex-wrap: $type;
-moz-flex-wrap: $type;
-ms-flex-wrap: $type;
-o-flex-wrap: $type;
flex-wrap: $type;
-js-flex-wrap: $type;
}
@mixin justifyContent($type: flex-start){
/* 09版 */
//-webkit-box-pack: justify;
/* 12版 */
-webkit-justify-content: $type;
-moz-justify-content: $type;
-ms-justify-content: $type;
-o-justify-content: $type;
justify-content: $type;
/* 其它取值如下:
align-items 主轴原点方向对齐
flex-end 主轴延伸方向对齐
space-between 等间距排列,首尾不留白
space-around 等间距排列,首尾留白
*/
-js-justify-content: $type;
}
@mixin alignItems($type: stretch){
/* 09版 */
//-webkit-box-align: center;
/* 12版 */
-webkit-align-items: $type;
-moz-align-items: $type;
-ms-align-items: $type;
-o-align-items: $type;
align-items: $type;
-js-align-items: $type;
}
@mixin alignContent($type: stretch){
/* 09版 */
//-webkit-box-align: center;
/* 12版 */
-webkit-align-content: $type;
-moz-align-content: $type;
-ms-align-content: $type;
-o-align-content: $type;
align-content: $type;
-js-align-content: $type;
}
@mixin flexOrder($val: 0){
-webkit-box-ordinal-group: $val; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-ordinal-group: $val; /* OLD - Firefox 19- */
-ms-flex-order: $val; /* TWEENER - IE 10 */
-webkit-order: $val; /* NEW - Chrome */
order: $val; /* NEW, Spec - Opera 12.1, Firefox 20+ */
-js-order: $val;
}
@mixin flexGrow($val: 0){
-webkit-box-flex-grow: $val; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex-grow: $val; /* OLD - Firefox 19- */
-webkit-flex-grow: $val; /* Chrome */
-ms-flex-grow: $val; /* IE 10 */
flex-grow: $val; /* NEW, Spec - Opera 12.1, Firefox 20+ */
-js-flex-grow: $val;
}
@mixin flexShrink($val: 1){
-webkit-box-flex-shrink: $val; /* OLD - iOS 6-, Safari 3.1-6 */
-moz-box-flex-shrink: $val; /* OLD - Firefox 19- */
-webkit-flex-shrink: $val; /* Chrome */
-ms-flex-shrink: $val; /* IE 10 */
flex-shrink: $val; /* NEW, Spec - Opera 12.1, Firefox 20+ */
-js-flex-shrink: $val;
}
//横向
.#{$namespace}flex-h{
@include flex();
@include flexDirection();
}