css中加 .ctltable{border-collapse: collapse;
table-layout:fixed}
.ctltable td {
text-overflow:ellipsis;
overflow:hidden;
white-space: nowrap;
}
<table class="ctltable">
<tr>
<td>1</td>
<td>张三</td>
</tr>
</table>
这篇博客介绍了如何使用CSS来固定table中td的高度,当文字内容过长时自动显示省略号。通过设置`border-collapse`、`table-layout`、`text-overflow`、`overflow`和`white-space`等属性,可以实现这一效果。
css中加 .ctltable{border-collapse: collapse;
table-layout:fixed}
.ctltable td {
text-overflow:ellipsis;
overflow:hidden;
white-space: nowrap;
}
<table class="ctltable">
<tr>
<td>1</td>
<td>张三</td>
</tr>
</table>

被折叠的 条评论
为什么被折叠?