css限制显示行数

.text-flow-ellipsis-multiple {
    /* 多余内容省略号处理-多行 */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    overflow: hidden; 
}
.text-flow-ellipsis-single {
    /* 多余内容省略号处理-单行 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
原文地址:https://www.cnblogs.com/excellencesy/p/12409800.html