/* 单行文本省略号 */
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/**
* 多行省略
* @line 行数 默认值 2
*/
.show-lines(@line: 2) {
display: -webkit-box;
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
-webkit-line-clamp: @line;
overflow: hidden;
text-overflow: ellipsis;
}
// 两行文字省略号
.ellipsis2{
.show-lines(2)
}