mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-24 21:09:45 +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;
|
|
}
|