2

我在 td 中有动态内容 - 如果副本太长,则单元格会忽略设置的高度并拉伸。这只发生在ie9中。

这是我的CSS

table tr {
min-height: 58px;
height: 58px;  overflow:hidden!important;
}
table td {
border-right: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
padding: 0 15px 0 15px;  overflow:hidden!important; height: 58px; white-space:wrap;
}

不太确定如何解决?

4

1 回答 1

1

不要使用 td 来布局内容。仅将表格用于表格数据。使用 span 和 div 以及适当的 css。

这只是您必须接受并适当编码的浏览器内容之一。我确定它会在 ie14 中修复,但当然会出现其他问题;)

于 2012-12-31T15:06:47.013 回答