/* 单行文字溢出省略号 */
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
height: xxx;
/* 多行文字溢出省略号 */
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;height: xxx;
/* 多行文字溢出省略号 */
word-wrap:break-word;
原文地址:https://www.cnblogs.com/slfish/p/11961457.html
时间: 2024-10-15 17:36:54