.text-flow-ellipsis-multiple {
    /* 多余内容省略号处理-多行 */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    overflow: hidden; 
}
.text-flow-ellipsis-single {
    /* 多余内容省略号处理-单行 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

 

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
猜你喜欢
  • 2022-12-23
  • 2021-05-31
  • 2022-12-23
  • 2021-08-10
  • 2021-11-11
  • 2021-08-10
  • 2021-09-03
相关资源
相似解决方案