zhangchen
2023-10-23 61b8b562f74691ae4dfe11008339450d0bc91ea1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@import "./iconfont.css";
 
 
 
*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
// 文本超出一行变省略号隐藏
.text-ellipsis-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
// 文本超出两行变省略号隐藏
.text-ellipsis-2 {
    // white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* 允许文本换行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
 
// 文本超出三行变省略号隐藏
.text-ellipsis-3 {
    white-space: normal; /* 允许文本换行 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}