MEILLEUR SITE POUR LES DÉVELOPPEURS WEB
HTML5. W3Schools en français. Le guide complet des tags

En Ua Es De

Balise HTML <center>


Non pris en charge en HTML5.

La balise <center> a été utilisée en HTML4 pour aligner le texte au centre.


Que faut-il utiliser à la place ?

Exemple

Aligner le texte au centre (avec 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>
Try it Yourself »