css设置字体单行,多行超出省略号显示

  单行:

  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;

 多行  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
posted @ 2018-03-01 15:11  lijuntao  阅读(953)  评论(0编辑  收藏  举报
TOP