ie8兼容background-size
2016-08-01 本文已影响49人
白小虫
来源:知乎
作者:chen77
链接:https://www.zhihu.com/question/32285092/answer/100653514
方法一:
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/logo.gif',sizingMethod='scale');
-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/logo.gif',sizingMethod='scale')";
①不能指定任意大小background百分比,可用cover,
②用于单张图片不能使用图片精灵等拼图,
③要引用绝对路径图片,
④兼容ie7,8
方法二:
.selector { background-size: cover; -ms-behavior: url(/backgroundsize.min.htc); }
①可指定百分比,
②.htc要相对文档路径,
③兼容ie7,8
参考答案:IE 8: background-size fix [duplicate]**