如何使用grunt autoprefixer定位IE9及更高版本?

时间:2014-07-22 04:21:08

标签: javascript css gruntjs autoprefixer

如何使用grunt autoprefixer定位IE9及更高版本?我可以做以下事情:

  grunt.config('autoprefixer', {
    options: {
      browsers: ['IE9+']
    },
    dist: {
      expand: true,
      src: '/styles/app.css'
    }
  });

1 个答案:

答案 0 :(得分:7)

browsers选项的语法可以在主Autoprefixer documentation中找到。相关位是:

  
      
  • Firefox >= 20是Firefox 20或更新版本。
  •   

  

浏览器名称(不区分大小写):

     
      
  • ...
  •   Internet Explorer的
  • Explorerie
  •   

因此,为了定位IE9及更新版本,请使用:

options: {
  browsers: ['ie >= 9']
},