单行
/*html*/
<p class="textOverflow"></p>
/*css*/
.textOverflow{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
多行
/*html*/
<p class="textOverflowMore"></p>
/*css*/
.textOverflowMore{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}