You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
16 lines
436 B
// 文本格式化超出省略号 参数:宽度,单行/多行
|
|
@mixin text-overflow($width: null, $row: 1){
|
|
@if $width != null{
|
|
width: $width;
|
|
}
|
|
@if $row == 1{
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
} @else {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: $row;
|
|
overflow: hidden;
|
|
}
|
|
}
|