①防止表格被宽度过大的图片撑破

 限制大图片显示尺寸

img {
max-width: 550px; width:expression(this.width > 550 ? "550px" : this.width)
}


②防止表格被字符撑破

做到既防止表格/层撑破又防止单词断裂了

table {
table-layout: fixed;
word-wrap:break-word;
}
div {
word-wrap:break-word;
}

相关文章:

  • 2021-12-13
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2020-10-19
  • 2022-02-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-10
  • 2022-12-23
  • 2021-10-26
  • 2022-02-12
  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
相关资源
相似解决方案