HTML <center> 标签

HTML5 不支持。

<center> 标签在 HTML4 中用于居中对齐文本。

用什么代替?

例子 1

居中对齐文本(使用 CSS):

<html>
<head>
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>

<h1>这是标题</h1>
<p>这是一个段落。</p>
<div>这是一个 div。</div>

</body>
</html>

亲自试一试


http://www.vxiaotou.com