mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
.multi-ellipsis(@lines) {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: @lines;
|
|
/* autoprefixer: ignore next */
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.ellipsis() {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|