超长文本用省略号截断(单行)
概述
当文本超长溢出容器宽度时,用省略号把文本截断是个常见需求。
本文仅讨论单行文本超长截断的场景。
代码片段
.container {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
当文本超长溢出容器宽度时,用省略号把文本截断是个常见需求。
本文仅讨论单行文本超长截断的场景。
.container {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}