Themetry is no longer operational. This site is here for archival purposes. See what Leland is working on at le.land.

The deprecated <center> tag continues to be used in WordPress support forums, necessitating this explanation.

What Does “Deprecated” Mean?

Deprecation indicates a feature “remains in the software” but “its use may raise warning messages recommending alternative practices.” Deprecated features may stop functioning.

Why You Shouldn’t Use center

The <center> tag violates fundamental web standards. HTML structures content while CSS handles presentation.

How to Horizontally Center Things

Centering Inline Elements (Images):

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

Centering Inline Contents Within Block Elements:

div {
	text-align: center;
}
Previous Post
Diagnosing high CPU load complaints from your web host
Next Post
Developing WordPress sites locally with AMPPS