IE 没有正确响应nowrap CSS 属性。
问题:如何在 IE 中进行这项工作,以便它呈现为 Chrome 的呈现结果。
http://jsfiddle.net/subsari/tmz0t0z2/3/
<body>
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td class="long_string">Data 1 with long text</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
</table>
th {
border: 1px solid red;
}
td {
border: 1px solid black;
}
.long_string {
white-space: normal;
white-space: nowrap;
max-width: 100px;
color: #FFA500;
}
如何让 IE 像 Chrome 一样渲染表格?最干净的解决方案?
提前感谢您的帮助!