HTML <center> 标签


HTML5 不支持。

这个<center>HTML4 中使用标签来居中对齐文本。


用什么代替?

示例

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

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

<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<div>This is a div.</div>

</body>
</html>
亲自试一试 »