4

对不起我的英语不好,我希望你能明白我想说的话......

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

我发现以下问题对我有很大帮助: 如何独立于“thead”滚动表格的“tbody”?

我测试了以下代码,它可以在 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

所以我确定这个错误来自 IE,但我不知道如何在不改变我的 HTML 结构的情况下修复它。

有人知道吗?

4

2 回答 2

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/

于 2012-10-11T09:58:10.117 回答
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;
        }

您将不得不根据您的表格调整高度和可能的其他属性。

于 2015-03-11T15:27:02.720 回答