实现文字多行省略

1,html

<p>我有很多文字  我有很多文字  我有很多文字  我有很多文字  我有很多文字  我有很多文字  </p>

 

2,css

display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;   //两行文字省略
text-overflow: ellipsis;
-webkit-box-orient: vertical;

posted @ 2017-01-11 09:10  pearl007  阅读(242)  评论(0编辑  收藏  举报