我使用表来显示一组数据,我的
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; }