css多行和单行省略
2018-10-20 本文已影响10人
前端来入坑
多行省略
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;