原文URL:http://blog.csdn.net/bing0728004/article/details/51509435
单行超出隐藏
// 单行超出隐藏
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
多行超出隐藏
// 多行超出隐藏
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical; // 文本排列方向
-webkit-line-clamp: 2; // 超出的行数:2
原文:https://www.cnblogs.com/CreateBox/p/15196040.html