Template:Center/doc: Difference between revisions

From escforumwiki
Jump to navigation Jump to search
en>Tatvam
See also: update
No edit summary
Line 18: Line 18:
<div class="center" style="width:auto; margin-left:auto; margin-right:auto;">...</div>
<div class="center" style="width:auto; margin-left:auto; margin-right:auto;">...</div>
</syntaxhighlight>
</syntaxhighlight>
To center a table, see [[Help:TABLECENTER]].
To center a table, see [[Help:TABLECENTER]]
 
Notes:
* If the markup to be centered includes an equals sign, the markup must be preceded by <code>1=</code>. Example: <code><nowiki>{{Center|1=the <span style="color:red">red</span> one}}</nowiki></code>.
* If the markup to be centered includes a displaying pipe, the pipe must be escaped as <code><nowiki>{{!}}</nowiki></code> or <code>&amp;#124;</code>.
 
=== Tables ===
Using {{tlc|left}} / {{tlc|center}} / {{tlc|right}}
{| class="wikitable"
!colspan="3" style="width:300px"| Header text
|-
| {{Left|Left}} || {{Center|Center}} || {{Right|Right}}
|}
Using {{tlc|align|left}} / {{tlc|align|center}} / {{tlc|align|right}}
{| class="wikitable"
!colspan="3" style="width:300px"| Header text
|-
| {{align|left|Left}} || {{align|center|Center}} || {{align|right|Right}}
|}
 
== Tracking category ==
Pages, which use {{tl|Center}} without an argument, are added to the {{clc|Pages using center with no arguments}}.
 
== TemplateData ==
{{TemplateDataHeader}}
<templatedata>
{
"params": {
"1": {
"label": "Content",
"type": "content",
"required": true,
"description": "Content to be centered"
},
"style": {
"label": "Custom CSS"
}
},
"description": "A simple template to center-align content in tables and other places. Be aware that the center class is applied to this template, which means every element within the template has its left and right margins set to auto. This may harm some templates."
}
</templatedata>
 
== See also ==
* {{tl|Center block}}
* {{tl|align}}
* {{tl|right}}, {{tl|left}} and {{tl|justify}}
* {{tl|Image frame}}
 
<includeonly>{{sandbox other||
<!-- Categories below this line; interwikis at Wikidata -->
[[Category:Positioning templates]]
[[Category:Typing-aid templates]]
[[Category:Wikipedia XHTML tag-replacing templates]]
}}</includeonly>

Revision as of 11:05, 25 March 2022

Description

It is to center elements on a page. See also Template:Align for more options and flexibility.

Usage

Markup Renders as
{{Center|Hello world!}}
Hello world!

To do this without a template, simply use the following code:

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

To center a table, see Help:TABLECENTER