单行文本:
{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
css代码:
.ellipsis{
width: 100%;
max-height: 146px;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
display: -webkit-box;//只针对webkit引擎的浏览器
-webkit-line-clamp: 8;//行高乘以8,当文本高度超过该高度时,超出部分文本省略...
-webkit-box-orient: vertical;//子元素垂直排列
}
外部链接:[https://www.runoob.com/w3cnote/front-end-interview-a-few-important-points-of-knowledge.html]
https://minjiechang.github.io/css/textOverflow/
(https://www.runoob.com/w3cnote/front-end-interview-a-few-important-points-of-knowledge.html)