单行文字省略
滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。 白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢。古今多少事,都付笑谈中。
css
.text-ellipsis-1 {
width: 500px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}多行文字
滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。 白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢。古今多少事,都付笑谈中。
css
.text-ellipsis-2 {
display: -webkit-box;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}sass
scss
@mixin textEllipsis($lineNum) {
@if $lineNum == 1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} @else {
display: -webkit-box;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: $lineNum; //需要显示的行数
overflow: hidden;
text-overflow: ellipsis;
}
}less
less
.text-ellipsis(@lineNum) when(@lineNum = 1) {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-ellipsis(@lineNum) when(@lineNum > 1) {
display: -webkit-box;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: @lineNum;
overflow: hidden;
text-overflow: ellipsis;
}