其他分享
首页 > 其他分享> > CSS超出字数展示点点点

CSS超出字数展示点点点

作者:互联网

一行内超出点点点
overflow:hidden; /*超出的部分隐藏起来。*/
white-space:nowrap;/*不显示的地方用省略号...代替*/
text-overflow:ellipsis;/* 支持 IE */
超出两行显示点点点
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
word-break: break-all; // 注意这个文字多行很重要
-webkit-box-orient: vertical;

标签:text,字数,点点,超出,webkit,ellipsis,overflow,CSS
来源: https://www.cnblogs.com/wuyandijun/p/16186597.html