使用grunt压缩css是能否设置background-size不压缩进去呢?否则ie8不能识别

.index-bg{
    background:url(img/index-bg-t.5344b19d.jpg) center center/cover no-repeat
}

比如上面这样ie8不能识别,连图也看不到了

解决办法

cssmin: { 
    options : { 
        compatibility : 'ie8', //设置兼容模式 
        noAdvanced : true //取消高级特性 
    },
    minify: { 
        expand: true, 
        cwd: srcName + '/', src: ['*\*/\*.css', '!*.min.css'], 
        dest: buildPath + '/', 
        ext: '.css' 
    } 
}

 

 

.index-bg{
    background:url(img/index-bg-t.5344b19d.jpg) center center/cover no-repeat
}
posted on 2015-11-13 18:20  知春里  阅读(303)  评论(0编辑  收藏  举报