翊枫
撸码才能成长,学会深究,懂得填坑
//单行省略样式
p.p1 {
  width: 210px;
  line-height: 24px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
//多行省略样式
p.p2 {
  width: 210px;
  line-height:24px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:5; //让第5行末尾显示为省略号
}
posted on 2017-08-15 09:59  翊枫  阅读(246)  评论(0编辑  收藏  举报

Stick to the code and become the code God.