css文本过多时隐藏并显示...

单行显示:

{

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

}

 

多行显示,在chrome浏览器中

{

  display: -webkit-box;

  overflow: hidden;

  text-overflow: ellipsis;

  max-height: .65rem;

  // 注释不可缺少

  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */

  -webkit-line-clamp: 3; //显示三行
}
posted @ 2018-10-31 16:12  zxs2016  阅读(583)  评论(0编辑  收藏  举报