.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
}
时间: 2024-10-26 21:04:08