_text_overflow.scss 130 B

12345678
  1. /* 单行文本溢出省略 */
  2. @mixin text-overflow() {
  3. overflow: hidden;
  4. white-space: nowrap;
  5. text-overflow: ellipsis;
  6. }