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
| /* components/ellipsis-text/index.wxss */
| .ellipsis {
| position: relative;
| }
|
| .ellipsis-text-1 {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| line-height: 1.5715;
| }
|
| .ellipsis-text-2 {
| -webkit-box-orient: vertical;
| display: -webkit-box;
| overflow: hidden;
| text-overflow: ellipsis;
| -webkit-line-clamp: 2;
| line-height: 1.5715;
| }
|
| .ellipsis-text-3 {
| -webkit-box-orient: vertical;
| display: -webkit-box;
| overflow: hidden;
| text-overflow: ellipsis;
| -webkit-line-clamp: 3;
| line-height: 1.5715;
| }
|
|