Template:Center/doc: Difference between revisions

Everything About Fiction You Never Wanted to Know.
Content added Content deleted
(copied from http://en.wikipedia.org/wiki/Template:Center/doc)
 
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 7: Line 7:
== Example ==
== Example ==


{{markup
| <nowiki>{{Center|Hello world!}}</nowiki>
| {{Center|Hello world!}}
}}


<nowiki>{{Center|Hello world!}}</nowiki>
To do this without a template, simply use the following code:
{{Center|Hello world!}}
:<code><nowiki><div class="center" style="width:auto; margin-left:auto; margin-right:auto;"></nowiki></tt>''your text''<tt><nowiki></div></nowiki></code>


To center a table, see [[Help:TABLECENTER]].


To do this without a template, simply use the following code:
===Table===
:<code><nowiki><div class="center" style="width:auto; margin-left:auto; margin-right:auto;"></nowiki></code>''your text''<code><nowiki></div></nowiki></code>
{| class="wikitable"
!colspan="3"| Header text
|-
| {{Left2|Left2}} || {{Center|Center}} || {{Right|Right}}
|}

==See also==
*{{tl|Left}}
*{{tl|Left2}}
*{{tl|Right}}


<includeonly><!--
<includeonly><!--

Latest revision as of 17:15, 25 January 2024


This is a simple template to center align content in tables and other places.

Example

 {{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;">your text</div>