Tag HTML <centro>


Non supportato in HTML5.

Il <center>tag è stato utilizzato in HTML4 per allineare il testo al centro.


Cosa usare invece?

Esempio

Testo allineato al centro (con 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>