美文网首页
Web解决IE6版本下的png图片灰色背景问题

Web解决IE6版本下的png图片灰色背景问题

作者: 梓霁 | 来源:发表于2017-03-30 21:13 被阅读0次
1.下载DD_belatedPNG.js文件

点击官网网址http://www.dillerdesign.com/experiment/DD_belatedPNG/

2.在<header></header>中添加代码
<!--[if IE 6]>
<script type="text/javascript" src="js/DD_belatedPNG.js"></script>
<script>
    DD_belatedPNG.fix('.header img');
</script>
<![endif]-->
注意:

1.你可以修复多个选择器的img图片:DD_belatedPNG.fix('.example1, .example2, img');
2.如果是用透明PNG作为a:hover时的背景图片,那么以”a:hover”来作为选择器:DD_belatedPNG.fix('.png a:hover');

相关文章

网友评论

      本文标题:Web解决IE6版本下的png图片灰色背景问题

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