.ellipsis-cell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
时间: 2024-06-09 15:06:18 浏览: 168
使用text-overflow:ellipsis实现文字超出用省略号显示
5星 · 资源好评率100%
.ellipsis-cell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } 是用来设置一个元素的文本内容溢出时显示省略号的样式。通过设置white-space为nowrap,使文本不换行;通过overflow:hidden,使文本内容超出元素宽度时隐藏溢出部分;通过text-overflow:ellipsis,使文本溢出时显示省略号。这样可以有效地处理长文本在有限空间内显示的问题。
阅读全文