CSS: 单行和多行文字溢出

ellipsis

Posted by chanweiyan on October 11, 2020
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    .text-ellipsis {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* 多行时不要配合 height 使用 */
    .multiline-ellipsis {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal !important;
        word-wrap: break-word;
    }