CSS超出省略号

单行省略号:
display:block;
overflow: hidden; text-overflow:ellipsis; white-space: nowrap;

多行省略号:
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
 
posted on 2017-01-17 13:51  vsmart  阅读(279)  评论(0)    收藏  举报