超出隐藏显示

1.超出两行显示

overflow:hidden; 

text-overflow:ellipsis;

display:-webkit-box; 

-webkit-box-orient:vertical;

-webkit-line-clamp:2; 

2.超出一行隐藏

overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
原文地址:https://www.cnblogs.com/yanghaifeng/p/9600053.html