如何使用grunt autoprefixer定位IE9及更高版本?我可以做以下事情:
grunt.config('autoprefixer', {
options: {
browsers: ['IE9+']
},
dist: {
expand: true,
src: '/styles/app.css'
}
});
答案 0 :(得分:7)
browsers
选项的语法可以在主Autoprefixer documentation中找到。相关位是:
Firefox >= 20
是Firefox 20或更新版本。
和
浏览器名称(不区分大小写):
- ...
Internet Explorer的Explorer
或ie
。
因此,为了定位IE9及更新版本,请使用:
options: {
browsers: ['ie >= 9']
},