单行超出省略

  #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;
  }

相关文章:

  • 2021-12-11
  • 2022-02-28
  • 2022-12-23
  • 2021-08-27
  • 2021-10-20
  • 2021-12-15
  • 2021-12-12
猜你喜欢
  • 2021-12-25
  • 2021-09-28
  • 2021-06-05
  • 2021-12-04
  • 2021-12-12
  • 2018-03-05
  • 2021-06-01
相关资源
相似解决方案