溢出:隐藏和浮动:在IE6上左侧

时间:2011-03-07 17:16:33

标签: css css-float

只为了框架你。请查看以下代码。

基本上我在div里面有一张桌子。当表格太大时,溢出隐藏的触发器。

问题:在IE6中,“某些文本”会按预期隐藏,但浮动范围不会 有办法解决它吗?

#wrap{
    overflow:hidden;
    height:20px
}
span{
    float:left;
    height:10px;
    width:10px;
    background:url(image.jpg) no-repeat 0 0;
}

<div id="wrap">
  <table>
     <tr>
        <td><span></span> some text</td>
     </tr>
     <tr>
        <td><span></span> some text</td>
     </tr>
     <tr>
        <td><span></span> some text</td>
     </tr>
  </table>
</div>

1 个答案:

答案 0 :(得分:1)

尝试给予身高:1%;对于ie6 css。如下。

涡卷{

overflow:hidden;
height:%;

}