清除html表格默认外边距

来源:互联网 发布:工作软件 编辑:程序博客网 时间:2024/06/07 04:55

table默认有外边距:

<body width="525px" height="527px"  border="0" >
<table id="remoteTB" style="display:none" width="525px" height="527px" cellPadding="0" cellSpacing="0">

</table>

加上:style="margin:0" table没有外边距

<body width="525px" height="527px"  border="0" style="margin:0">
<table id="remoteTB" style="display:none" width="525px" height="527px" cellPadding="0" cellSpacing="0">

</table>

 

0 0
原创粉丝点击