单行省略号

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
width:500px;

 

多行省略号

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

 

相关文章:

  • 2021-08-27
  • 2021-12-12
  • 2021-12-15
  • 2021-08-11
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案