0

以下适用于 chromer、Firefox 但不适用于 IE8 谁能告诉我为什么?

 table {
    table-layout:fixed;
    }

tbody {
    height: 520px;
    overflow: auto;
}
table td {
    min-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align:center;
}

thead > tr, tbody{
    display:block;
}
4

1 回答 1

0

在 IE8 中,tbody 不可滚动,因此请使用:

position: absolute;

然后对 div 等使用边距和填充。

于 2013-05-23T00:09:19.157 回答