Template:Center/doc

Revision as of 04:35, 4 December 2024 by ArrowHead294 (talk | contribs) (Documentation page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The <center> tag was deprecated in HTML 4, and there is no easy replacement for it. This template replicates the tag's functionality using a workaround via nested <div> elements:

<div style="text-align: center;">
    <div style="margin: auto auto auto auto;">
    ...
    </div>
</div>