从类bug加载的IE7图像

时间:2011-11-24 12:43:44

标签: html css internet-explorer

IE7和图片的问题...... 我的CSS

.dot-preview {
    background: url("../images/bola02.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 12px;
    margin: 3px;
    width: 13px;
}

.navi-active .dot-preview {
    background: url("../images/bola01.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 12px;
    margin: 3px;
    width: 13px;
}

我的HTML

<ul>
  <li> <a href="javascript:void(0);" class="navi"><span class="navbar-img"><img class="dot-preview"></span></a></li>
  <li> <a href="javascript:void(0);" class="navi-active"><span class="navbar-img"><img class="dot-preview"></span></a></li>
</ul>

网站: http://di20studios.com/argento/

问题出在幻灯片上方的左侧。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

据我所知,你的问题存在于IE7中而且只是少了。如果是,那么答案很简单:IE7及更少不支持透明图像。试试这个: http://www.twinhelix.com/css/iepngfix/

祝你好运