单行溢出省略号显示
.myText{
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
多行溢出省略号显示
.myText{
width: 200px;
/*text-overflow: ellipsis;*/
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-height: 1.5;
}
原文:http://www.cnblogs.com/heshimei/p/7159971.html