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