【发布时间】:2015-05-20 02:02:21
【问题描述】:
我正在尝试编写一个符合 HTML-5 的文档,该文档通过
W3C 验证器:http://validator.w3.org/check .
验证器抱怨每次使用
我已在以下位置阅读“CSS 居中指南”: http://www.w3.org/Style/Examples/007/center.en.html 但它的所有示例也无法将表格或图像水平居中 (至少在 Firefox 36.0 上)。 谁能建议如何使这张桌子居中?:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>CSS centering bug demo
</title>
<style type="text/css">
.centered{ display: block;
margin-left:auto;
margin-right:auto;
align: center;
text-align: center;
vertical-align: center;
horizontal-align: center;
}
</style>
</head>
<body>
<div class="centered">
<table width="60%">
<tr>
<td>Example Table</td>
<td>which should be horizontally centered on the page.</td>
</tr>
</table>
</div>
</body>
</html>
【问题讨论】: