IE中的HTML表格宽度?

前端之家收集整理的这篇文章主要介绍了IE中的HTML表格宽度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用表来显示一组数据,我的 HTML代码在这里…
<table border="1" cellspacing="0" cellpadding="0" style="width: 780px;">
  <tbody>
    <tr>
      <td style="width: 780px; height: 25px;">
        <pre width='100' style='width: 780px; word-wrap: break-word;'>
            the data goes here.....
        </pre>            
      </td>
    </tr>
    <tr>
      <td style="width: 780px; height: 25px;">
        <pre width='100' style='width: 780px; word-wrap: break-word;'>
            the data goes here.....
        </pre>            
      </td>
    </tr>
  </tbody>
</table>

这个表在firefox,safari和IE8中运行正常.但问题出现在IE7,IE6中……当桌子扩展并离开屏幕时(即在x轴向右侧扩展)….
有没有修复它的黑客?

IETester中IE6的屏幕截图:

解决方法

使用下面的CSS,这可以防止您的表超出您定义的最大大小:
table{
  table-layout:fixed;
}
原文链接:https://www.f2er.com/html/226643.html

猜你在找的HTML相关文章