【发布时间】:2017-11-09 05:35:24
【问题描述】:
我一定在这里遗漏了一些东西,但为什么我的 text-overflow: ellipses 规则在这里不能正常工作?
小提琴:https://jsfiddle.net/sgj9rv5r/
td {
white-space: nowrap;
width: 50px;
overflow: hidden;
text-overflow: ellipsis;
}
<table border="1">
<tr>
<td>
This content should shorten to ellipses after the 50px width has been reached.
</td>
</tr>
</table>
【问题讨论】:
-
使用
max-width -
同意CBroe,我觉得你可以试试display:block;