You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
497 B
26 lines
497 B
|
3 years ago
|
/*
|
||
|
|
* @Description: 文字超出省略
|
||
|
|
* @Author: 无痕
|
||
|
|
* @Email: 350801869@qq.com
|
||
|
|
* @Date: 2021-02-28 23:52:23
|
||
|
|
* @LastEditTime: 2021-08-04 14:21:25
|
||
|
|
* @LastEditors: 无痕
|
||
|
|
*/
|
||
|
|
.s-ellipsis {
|
||
|
|
overflow: hidden;
|
||
|
|
white-space: nowrap;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
|
||
|
|
.s-multi-ellipsis--l2,
|
||
|
|
.s-multi-ellipsis--l3 {
|
||
|
|
display: -webkit-box;
|
||
|
|
overflow: hidden;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-webkit-line-clamp: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.s-multi-ellipsis--l3 {
|
||
|
|
-webkit-line-clamp: 3;
|
||
|
|
}
|