tanghaolin
8 天以前 9bee4f48db0c5b99b5683545fac737856d94d082
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 文本溢出显示省略号
--------------------------------------------------------- */
.over-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
 
.flex-0 {
    flex: 0 0 auto;
}
 
.flex-auto {
    flex: 1;
    overflow: hidden;
}
 
 
.flex-center{
    justify-content: center;
    align-items: center;
}