Autoprefixer解析CSS文件而且添加瀏覽器前綴到CSS規則裏,使用Can I Use的數據來決定哪些前綴是須要的。javascript
全部你須要作的就是把它添加到你的資源構建工具(例如 Grunt)而且能夠徹底忘記有CSS前綴這東西。儘管按照最新的W3C規範來正常書寫你的CSS而不須要瀏覽器前綴。像這樣:css
1
2
3
|
a{
transition :transform
1
s
}
|
Autoprefixer使用一個數據庫根據當前瀏覽器的普及度以及屬性支持提供給你前綴:前端
1
2
3
4
5
|
a{
-webkit-transition :-webkit-transform
1
s;
transition :-ms-transform
1
s;
transition :transform
1
s
}
|
問題java
1
2
3
4
5
6
7
|
a {
background : linear-gradient(to
top
,
black
,
white
);
display : flex
}
::placeholder {
color :
#ccc
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
a {
background : -webkit-linear-gradient(
bottom
,
black
,
white
);
background : linear-gradient(to
top
,
black
,
white
);
display : -webkit-box;
display : -webkit-flex;
display : -moz-box;
display : -ms-flexbox;
display : flex
}
:-ms-input-placeholder {
color :
#ccc
}
::-moz-placeholder {
color :
#ccc
}
::-webkit-input-placeholder {
color :
#ccc
}
::placeholder {
color :
#ccc
}
|
1
2
3
4
|
a {
-webkit-border-radius :
5px
;
border-radius :
5px
}
|
1
2
3
|
a {
border-radius :
5px
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Gruntfile.js
module.exports =
function
(grunt) {
grunt .initConfig ({
autoprefixer : {
dist : {
files : {
'build/style.css'
:
'style.css'
} } },
watch : {
styles : {
files : [
'style.css'
],
tasks : [
'autoprefixer'
]
}
}
});
grunt.loadNpmTasks(
'grunt-autoprefixer'
);
grunt.loadNpmTasks(
'grunt-contrib-watch'
);};
|
style.css
到
build/style.css
. 一樣咱們將用
grunt-contrib-watch
來
監聽
style.css文件變化
從新編譯
build/style.css。
1
2
3
|
a {
width : calc(50% - 2em)
}
|
calc()
值單元須要Safari 6的
瀏覽器前綴。
1
2
3
4
|
a {
width : -webkit-calc(
50%
-
2em
);
width : calc(
50%
-
2em
)
}
|
1
2
3
4
|
a {
width : calc(
50%
-
2em
);
transition : transform
1
s
}
|
transition
及
transform
添加
前綴。但IE9也須要爲transform添加前綴,做爲transition的值。
1
2
3
4
5
6
7
|
a {
width : -webkit-calc(
1%
+
1em
);
width : calc(
1%
+
1em
);
-webkit-transition : -webkit-transform
1
s;
transition : -ms-transform
1
s;
transition : transform
1
s
}
|