【css】文本超出行数以省略号显示

//超出2行省略
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2; //行数设置
原文地址:https://www.cnblogs.com/smilexumu/p/8483648.html