使table居中

css中定义

.CenterDiv { text-align:center }

在如下代码中,并不能使table居中

<div class="CenterDiv">
    <table>
        ...
    </table>
</div>

 需要给table加入margin:auto样式,即

<table style="margin:auto">
  ...
</table>

  

posted @ 2013-01-20 18:32  tszhao  阅读(195)  评论(0编辑  收藏  举报