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;

你可能感兴趣的:(css多行和单行省略)