div+css 单行或者多行超出文本,数字,字母长度自动省略

/* 超过两行 省略 */
.ellipsis{
margin:0;
overflow:hidden;
display:-webkit-box;
-webkit-box-orient:vertical;
text-overflow:ellipsis;
-webkit-line-clamp:2;/* 当前第二行超出用省略号*/
word-break:break-all;
}

猜你喜欢

转载自blog.csdn.net/u014596302/article/details/80027342