css 省略号的写法

单行省略号

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
width:500px;

 

多行省略号

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

 

posted @ 2018-09-08 18:03  快乐锁  阅读(2211)  评论(0编辑  收藏  举报