/* 单行文字溢出省略号 */ 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; 来源:https://www.cnblogs.com/slfish/p/11961457.html 标签 前端 box webkit overflow