css多行和单行省略

多行省略
width:100px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;

单行省略
width:100px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;

    原文作者:前端来入坑
    原文地址: https://www.jianshu.com/p/b07636e97002
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞