如何居中

时间:2015-12-23 16:24:03

标签: html css center css-tables

我有以下css:

table.toe {
  border: 1px solid black;
  width: 80%;
  margin-left:auto; 
  margin-right:auto;
}
table.toe td {
  border:1px solid black;
  text-align: center;
  font-size: 24px;
}

我知道这是因为宽度和td样式存在且可修改。但桌子本身卡在屏幕的左侧,我希望它能够居中。

我正在使用IE 9

谢谢!

1 个答案:

答案 0 :(得分:2)

自动边距将使表格居中,除非您使用Quirks Mode,这将导致IE 9模拟IE 5。

确保使用Doctype启动HTML文档。 HTML 5通常是一个不错的选择。

<!DOCTYPE html>

通过validator运行代码可能也是有益的。