实用前端小知识

/* 单行文字溢出省略号 */

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;

猜你喜欢

转载自www.cnblogs.com/slfish/p/11961457.html