1.使用overflow: hidden把超出的内容进行隐藏;

2.然后使用white-space: nowrap设置内容不换行;

3.最后使用text-overflow: ellipsis设置超出内容为省略号

text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;

 

相关文章:

  • 2021-09-11
  • 2022-12-23
  • 2021-04-28
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2021-11-27
  • 2021-12-16
  • 2022-02-09
相关资源
相似解决方案