1.table表格整个居中

<div style="text-align: center;">

    <table border="1" style="margin: auto;" width='60%'>

       ......

    </table>

</div>

我们在table外围div中加入样式style="text-align: center;",会发现table表格居中不生效,原因最后说。

所以我们在 <table border="1" style="margin: auto">加入style="margin: auto"会发现table表格整个居中。

2.table表格各行各列中内容居中

可以在table外围div中加入样式style="text-align: center;"让表格中内容居中。为了看的清楚可以为table表格设置一个宽度。

或是单独的在<td style="text-align: center;"></td>加入样式都能实现。

 

更多推荐

html中table表格里的内容如何居中