Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 my 设置td为确定width。我想在td. 我希望当tdtext宽度大于 td 宽度时,它会将其剪切或放在文本末尾。这样文本将只显示一行而不是换行。我怎样才能做到这一点?
td
width
text
谢谢
您可以使用CSS3 文本溢出方法来完成此操作。
text-overflow:ellipsis;
参考
JSBIN
设置样式为
td { white-space: nowrap }