css 设置文本设置多行,超出隐藏

 .class{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
原文地址:https://www.cnblogs.com/hill-foryou/p/11451136.html