uni-events-helper-wx
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.

15 lines
436 B

3 years ago
  1. // 文本格式化超出省略号 参数:宽度,单行/多行
  2. @mixin text-overflow($width: null, $row: 1){
  3. @if $width != null{
  4. width: $width;
  5. }
  6. @if $row == 1{
  7. white-space: nowrap;
  8. text-overflow: ellipsis;
  9. overflow: hidden;
  10. } @else {
  11. display: -webkit-box;
  12. -webkit-box-orient: vertical;
  13. -webkit-line-clamp: $row;
  14. overflow: hidden;
  15. }
  16. }