table中td会随着里面的内容伸缩,设置其width样式并没有效果。这个时候需要下面的CSS可以实现。

首先是设置table

.table {
table-layout:fixed;
}

其次是td

.table  td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

相关文章:

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