覆盖<span>在IE6中不起作用</span>

时间:2009-12-23 11:32:43

标签: html css internet-explorer

<li>
  <span>overlay</span>
  content
</li>


li {
   position: relative;
   height:65px;
   overflow: hidden;
}
li span {
    background: url(../img/bullet_grey.png) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50px;
    left: 10px;
}

这适用于除IE6之外的所有浏览器,IE6只是隐藏SPAN。我该如何解决?

谢谢!

1 个答案:

答案 0 :(得分:0)

here应指导您解决问题。