hailu
2023-05-25 3644568ac3b6db7e387d5ab72da717e51626f869
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 文本格式化超出省略号  参数:宽度,单行/多行
@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;
    }
}