BESTE WEBSITE FÜR WEBENTWICKLER
HTML5. W3Schools auf Deutsch. Der komplette Tag-Guide

Ua En Es Fr

HTML<center>-Tag


Wird in HTML5 nicht unterstützt.

Das Tag <center> wurde in HTML4 verwendet, um Text zentriert auszurichten.


Was stattdessen verwenden?

Beispiel

Mittig ausgerichteter Text (mit 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 »