当前位置: 代码迷 >> Web前端 >> table-layout:fixed 解决chrome中不能设定表格固定宽度的有关问题
  详细解决方案

table-layout:fixed 解决chrome中不能设定表格固定宽度的有关问题

热度:780   发布时间:2012-09-17 12:06:51.0
table-layout:fixed 解决chrome中不能设定表格固定宽度的问题
table-layout:fixed;

(probably not use width:auto, should use width:100% instead.)

add to table style


add the style below to td for long unbreakable content like a url
<style>
word-wrap: break-word;
break-word: break-all;
</style>

  相关解决方案