scss 多行文本截断
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 多行文本截断相关的知识,希望对你有一定的参考价值。
/* mixin for multiline */
@mixin multiLineEllipsis($lineHeight: 1.2em, $lineCount: 1, $bgColor: white){
overflow: hidden;
position: relative;
line-height: $lineHeight;
max-height: $lineHeight * $lineCount;
text-align: justify;
margin-right: -1em;
padding-right: 1em;
&:before {
content: '...';
position: absolute;
right: 0;
bottom: 0;
}
&:after {
content: '';
position: absolute;
right: 0;
width: 1em;
height: 1em;
margin-top: 0.2em;
background: $bgColor;
}
}
.block-with-text {
@include multiLineEllipsis($lineHeight: 1.2em, $lineCount: 3, $bgColor: white);
}
以上是关于scss 多行文本截断的主要内容,如果未能解决你的问题,请参考以下文章
scss 将文本截断为一行,将鼠标悬停以展开
iOS drawInRect:属性使用多行执行文本截断
ScrollView 中的多行文本被截断
css 多行文本截断
如何从数据库中截断多行文本? (html/css/php)
文本溢出截断省略