在IE9中为表设置修复(冻结)标题的问题?

时间:2012-04-06 10:04:44

标签: html css

我创建了具有固定标题和可滚动内容的表。并将css作为thead的fixedHeader和tbody的scrollContent:

thead.fixedHeader tr {
    position: relative;
}
html > body thead.fixedHeader tr {
    display: block;
}

html > body tbody.scrollContent {
    display: block;
    overflow: auto;
}

这适用于除IE之外的mozilla firefox,Chrome和Safari。 IE中如何解决这个问题。

此致 吉里什

1 个答案:

答案 0 :(得分:0)

您是否尝试过设置z-index?这样可以始终将标题保持在最顶端。 http://www.w3schools.com/cssref/pr_pos_z-index.asp