HTML <center> Tag


Não suportado em HTML5.

A <center>tag foi usada em HTML4 para centralizar o texto.


O que usar em vez disso?

Exemplo

Texto alinhado ao centro (com 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>