实现单行
.nowrap{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
实现多行:
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
关于css实现单行、多行省略标记:http://www.cnblogs.com/moutudou/p/7077705.html
原文:http://www.cnblogs.com/ljbkyBlog/p/7275265.html