Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // 多行截断mixin
  2.  
  3. @mixin elipsisMulti($lines: 2) {
  4. display: -webkit-box;
  5. -webkit-line-clamp: $lines; /*超出第$lines行截断*/
  6. -webkit-box-orient: vertical;
  7. overflow: hidden;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement