css3文本超也显示省略号...
/*单行*/
.text1 {
width:200px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
/*多行*/
.text2 {
width:200px;
word-break:break-all;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}