23 lines
461 B
SCSS
23 lines
461 B
SCSS
@mixin text-ellipsis() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
// 单行超长省略号
|
|
@mixin oneline-ellipsis($width: 100%) {
|
|
width: $width;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
// 多行超长省略号
|
|
@mixin moreline-ellipsis($line: 2, $width: 100%) {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: $line;
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
}
|