使用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
}
原文地址:https://www.cnblogs.com/timejs/p/4963010.html