【发布时间】:2022-01-28 07:15:28
【问题描述】:
我有下表
<table>
<tr>
<td>Long name name name name name name</td>
</tr>
<tr>
<td>Some shorter</td>
</tr>
</table>
还有我的css
table {
border: 1px solid black;
}
td {
max-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
我需要在我的桌子上添加省略号,这就是我使用 max-width: 100px; 和white-space: nowrap; 的原因
但这里的问题是我需要修复我的 td
td {
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
如果我这样做比我的 td 具有固定宽度但我失去了省略号。有什么方法可以做到这一点吗?
【问题讨论】:
-
你想对
ellipsis做什么? -
我的名字很长,所以我不能在表格中显示全名 - 我显示省略号并悬停全名...
-
这能回答你的问题吗? CSS text-overflow in a table cell?
-
不,彼得,我在那里尝试了一些罕见的答案