美文网首页前端前端研习社
ie8兼容background-size

ie8兼容background-size

作者: 白小虫 | 来源:发表于2016-08-01 14:55 被阅读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); }

GitHub - louisremi/background-size-polyfill: Adds support for background-size "cover" and "contain" to IE8**

①可指定百分比,
②.htc要相对文档路径,
③兼容ie7,8
参考答案:IE 8: background-size fix [duplicate]**

相关文章

网友评论

    本文标题:ie8兼容background-size

    本文链接:https://www.haomeiwen.com/subject/gigxsttx.html