多行溢出省略号:
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;// 超出2行省略号
-webkit-box-orient: vertical;
word-wrap: break-word;// 长单词换行
word-break: normal;// 在恰当的断字点进行换行
单行溢出省略号:
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: break-word;
word-break: normal;