CSS溢出删除(text-overflow: ellipsis)是一种解决文字溢出问题的技术。当文字溢出容器时,通常会出现省略号(...)来代替溢出的部分。
.box { width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
在上述代码中,我们使用了text-overflow: ellipsis来实现溢出删除。同时,将white-space设置为nowrap,使得文字不会换行并一直在一行内显示,overflow: hidden则表示超出容器的内容将被隐藏。
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce nec ante orci. Nulla eleifend velit in enim finibus, sodales venenatis nibh semper.
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did222070