表格布局页面问题?
请问在表格布局页面的时候,宽度大于设置的宽度时,为什么会拉大,例如下面的表格的第一个td 宽度为280,当填写的数据的宽度大于280的时候,会拉大,怎样可以设置不拉大表格的宽度?先谢谢啦!
<table align= "center " cellpadding= "0 " cellspacing= "0 " width= "760 ">
<tr>
<td width= "280 "> leftleftleftleftleftleftleftleftleftleftlefttleftleftleftleftleftleftleftleftleftleft </td>
<td width= "480 ">
ightrightrightrightrightrightrighthtrightrightrightrightrightrightright
</td>
</tr>
</table>
------解决方案-------------------- <table align= "center " cellpadding= "0 " cellspacing= "0 " style= "width:760px;word-break:break-all; ">
<tr>
<td width= "280 "> leftleftleftleftleftleftleftleftleftleftlefttleftleftleftleftleftleftleftleftleftleft </td>
<td width= "480 "> ightrightrightrightrightrightrighthtrightrightrightrightrightrightright </td>
</tr>
</table>
------解决方案--------------------楼上正解