// 文字一行显示折叠
@mixin linetext {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
// 自定义折叠显示
@mixin showlineText($number:2) {
overflow: hidden;
display: -webkit-box;
text-overflow: ellipsis;
-webkit-line-clamp: $number;
-webkit-box-orient: vertical;
}
使用 @include linetext
最后
以上就是善良手套最近收集整理的关于sass变量的@mixins函数使用的全部内容,更多相关sass变量内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复