在IE 9上滚动tbody的问题(​​tbody的高度=高度线)

时间:2012-10-11 09:42:25

标签: html css scroll html-table internet-explorer-9

抱歉我的英语不好,我希望你能理解我想说的话......

我正在尝试实现一个HTML表,它支持独立于表头滚动表体。

我发现以下问题对我有很大帮助: How to scroll table's "tbody" independent of "thead"?

我测试了以下代码,它适用于Chrome(22),Firefox(16)和Opera(12),没有问题:

HTML:

<table>
  <thead>
   <tr>
    <th>Title1</th>
    <th>Title2</th>
    <!-- ... -->
   </tr>
  </thead>
  <tbody>
   <tr>
     <td>...</td>
     <td>...</td>
     <!-- ... -->
   </tr>
   <!-- ... -->
  </tbody>
</table>

CSS:

thead, tbody {
    display: block;
}

tbody {
    height:500px;
    overflow-y:auto;
    overflow-x:hidden;
}

thead {
    line-height: 20px;
}

所以它适用于除IE 9之外的主浏览器,在IE上,我有一些问题:

  • 未定义tbody的高度(因此我没有任何滚动条)
  • 每个都有500px的高度(tbody在其他浏览器上的高度)

以下两个示例具有完全相同的问题:http://jsfiddle.net/nyCKE/2/http://www.imaputz.com/cssStuff/bigFourVersion.html

我看到了以下问题(和答案),但它对我没有帮助:IE9 + css : problem with fixed header table

所以我确信这个bug来自IE,但我不知道如何修改它而不改变我的HTML结构。

有人知道吗?

2 个答案:

答案 0 :(得分:6)

我稍微试图解决它。希望它能给出一些想法

HTML

<div class="wrap">
    <div class="inner">
        <table>
            <thead><tr>
                <th><p>Problem</p></th>
                <th><p>Solution</p></th>
        </tr>               
            </thead>            
            <tbody>              
            </tbody>
        </table>
    </div>
</div>​

CSS

p {margin:0 0 1em}
table p {margin :0}
.wrap {
    margin:50px 0 0 2%;
    float:left;
    position:relative;
    height:200px;
    overflow:hidden;
    padding:25px 0 0;
    border:1px solid #000;
width:150px
}
.inner {
    padding:0 ; 
    height:200px;
    overflow:auto;
}    
table {  margin:0 0 0 -1px; border-collapse:collapse; width:130px}
td {
    padding:5px;
    border:1px solid #000;
    text-align:center;    
}
thead th {
    font-weight:bold;
    text-align:center;
    border:1px solid #000;
    padding:0 ;    
    color:#000;
}
thead th {border:none;}
thead tr p {  position:absolute;   top:0;    }
.last { padding-right:15px!important; }​

演示http://jsfiddle.net/nyCKE/272/

答案 1 :(得分:0)

这是一个较短的答案,允许您使用ie9中的固定标题滚动表格。

在表格周围添加条件div

<!--[if lte IE 9]>
<div class="old_ie_wrapper">
<!--<![endif]-->
<table>
...
<!--[if lte IE 9]>
</div>
<!--<![endif]-->

为ie9

添加以下样式
    .old_ie_wrapper {
        height: 500px;
        overflow: auto;
    }

        .old_ie_wrapper tbody {
            height: auto;
        }

        .old_ie_wrapper thead tr {
            position: absolute;
        }

        .old_ie_wrapper tbody tr:first-child {
            height: 67px;
            vertical-align: bottom;
        }

您必须根据表格调整高度和其他属性。