scss 的mixin

153 阅读1分钟
//在css文件中写入
@mixin overflow-white {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

//在页面中通过使用
@include overflow-white;