HTML <center> -tag


Niet ondersteund in HTML5.

De <center>tag werd in HTML4 gebruikt om tekst in het midden uit te lijnen.


Wat te gebruiken in plaats daarvan?

Voorbeeld

Tekst centreren (met 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>