超出省略点

  单行超出省略

  #div1{

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    word-break: break-word;

 

  }

  多行超出省略(这里时两行超出省略,如果时多行的话,改下面的数字即可)

  #div1{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
  }

posted on 2019-08-27 17:16  Web引领者  阅读(855)  评论(0编辑  收藏  举报