在Firefox中居中表

时间:2010-09-01 16:21:58

标签: html css html-table alignment

我的一个页面上有一个小桌子,我希望它居中,所以编码<table cellpadding="0" cellspacing="0" align="center">在IE中可以正常工作,但桌子仍然在Firefox中保持对齐。

如果我使用 text-align:center n align:-moz-center它在IE中不起作用

我需要更改什么才能让桌面在Firefox中居中?如果我应该使用-moz-center如何使其在IE中工作?

我被困在这里。

2 个答案:

答案 0 :(得分:6)

margin: auto;添加到表格中。这是执行此操作的标准方法。

答案 1 :(得分:4)

正如Lekensteyn所提到的,这里有一些代码可以显示它的实际效果:

<div style="margin: 0 auto; text-align:center;">
<table border="1" style="width:200px;">
<tr>
  <td>Hello</td>
  <td>How</td>
</tr>
<tr>
  <td>are</td>
  <td>you?</td>
</tr>
</table>
</div>

它应该基于width&amp; margin样式定义。