IE6上解决PNG透明图片问题

阅读更多
到官网下载DD_belatedPNG:http://dillerdesign.com/experiment/DD_belatedPNG/#download
然后你的页面上添加如下代码即可:



如果是在在iframe中的页面,请修改DD_belatedPNG源码:
找到如下代码:
if (el.currentStyle.position == 'static') {
    el.style.position = 'relative'
}
修改为:
if (el.currentStyle.position == 'static') {
  if(el.nodeName.toLowerCase()!='html'){
        el.style.position = 'relative'
  }
}

你可能感兴趣的:(IE6,png,透明,DD_belatedPNG)