Template:Center

From Official Kodi Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
[edit] Template documentation

Description

This template's purpose is to center any elements supplied to it on the page, regardless of the browser used and the width of the display or window. This is done by wrapping the contents in </div><div> HTML5 tags that have the following CSS 3.0 properties:
width: auto; margin-left: auto; margin-right: auto;

Usage

Simply place any valid Wikitext you wish to appear centered as the contents of the (only) unnamed parameter, as in...

{{Center|Elements (text, images, etc.) to be centered here}}

...which is rendered by the parser as:

Elements (text, images, etc.) to be centered here

Additional CSS properties

This template does have one named parameter, style, which can be used to pass additional CSS properties to the wrapping <div> tags. The properties should be well-formed CSS 3.0, with colon-delimited property names and all values terminated with a semicolon. As an example, if it was desired to have the template's output be double-spaced below the preceding text and in a larger, bold font, it would look like...

{{Center|style=margin-top: 2em; font-size: larger; font-weight: bold;|Elements (text, images, etc.) to be centered here}}

...which is rendered as:

Elements (text, images, etc.) to be centered here

Bare HTML tags

To do this without a template, simply use the following HTML code, replacing the '...' with any standard Wikitext you want to appear centered on the page (multiple lines are acceptable, too):

<div class="center" style="width: auto; margin-left: auto; margin-right: auto;">...</div>

See also