
正文
table表格整体居中
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
代码:
<div style="text-align:center">
<table border="1" cellpadding="3" cellspacing="0" style="width: 60%;margin:auto">
<tr><td>4545</td> </tr>
</table>
</div>
如果只是单单用第一行代码,表格整体不会居中,但是字体会居中,这是因为text-align属性代表市元素中文本的水平对齐方式,只针对文本内容所以我们还需要再加一行
<table border="1" style="margin: auto;" width='60%'>
......
</table>







