Template:Center/doc

From Xenharmonic Wiki
Revision as of 16:06, 18 December 2024 by ArrowHead294 (talk | contribs) (Restore revision 171368 by ArrowHead294 (talk))
Jump to navigation Jump to search
English Wikipedia has an article on:

The <center> tag in HTML is now deprecated, and there is no easy replacement for it. This template is designed to replicate the tag's functionality using nested <div> elements as a workaround:

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

This way, there is no need to manually type out the needed elements every time something needs to be centered.

Parameters

{{{1}}} (required)
One unnamed parameter, consisting of the text to be centered.
width (optional)
Pass in the desired width; the default value is auto.
top (optional)
Pass in the desired upper margin; the default value is auto.
bottom (optional)
Pass in the desired lower margin; the default value is auto.