table表格整体居中

代码:

1 <div style="text-align:center">
2     <table border="1" cellpadding="3" cellspacing="0" style=" 60%;margin:auto">
3        <tr><td>4545</td> </tr>
4     </table>
5 </div>

如果只是单单用第一行代码,表格整体不会居中,但是字体会居中,这是因为text-align属性代表市元素中文本的水平对齐方式,只针对文本内容所以我们还需要再加一行

<table border="1" style="margin: auto;" width='60%'>
      ......
</table>
原文地址:https://www.cnblogs.com/smartisn/p/11625388.html