Files
2026-01-05 12:47:14 +08:00

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;
}