css处理文本溢出
程序员文章站
2022-04-24 15:59:49
css: white-space: 不换行。强制在一行显示。 text-overflow: 处理溢出的文本: 以省略号代替。 1 ......
css:
.box{ width: 100px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
white-space: 不换行。强制在一行显示。
text-overflow: 处理溢出的文本: 以省略号代替。
1