mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-09-02 14:19:46 +08:00
8 lines
174 B
CSS
8 lines
174 B
CSS
@define-mixin multi-ellipsis $lines {
|
|
overflow : hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: $lines;
|
|
-webkit-box-orient: vertical;
|
|
}
|