多行文本溢出变省略号

版权声明:本文为博主原创文章,如需转载请务必注明原地址。 https://blog.csdn.net/qq_31393401/article/details/82889903

多行文本溢出变省略号:

overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

单行溢出变省略号:

overflow : hidden;
text-overflow: ellipsis;
white-space:nowrap;

猜你喜欢

转载自blog.csdn.net/qq_31393401/article/details/82889903