文本设置超过几行显示...

一行:

.oneline{

  white-space:nowrap;

overflow:hidden:

text-overflow:ellipsis;

width:100px;

}

 <div class="oneline">abssadasasdgjkkkkkk;lk;k';</div>

 

多行(以3行为例):

.oneline{

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:3;

overflow:hidden;

}

 

posted @ 2017-08-16 12:12  有间小屋在森林  阅读(377)  评论(0编辑  收藏  举报