• Wikisimpsons needs more Featured Article, Picture, Quote, Episode and Comprehensive article nominations!
  • Wikisimpsons has a Discord server! Click here for your invite! Join to talk about the wiki, Simpsons and Tapped Out news, or just to talk to other users.
  • Make an account! It's easy, free, and your work on the wiki can be attributed to you.
TwitterFacebookDiscord

Difference between revisions of "Template:Table"

Wikisimpsons - The Simpsons Wiki
 
(37 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{| {{#Switch:{{{collapsible|no}}} |yes = class="collapsible collapsed wikitable"}} {| align="center" width="100%" style="background: #{{yellow color}}; -moz-border-radius: 1em; border: 5px solid #{{yellow color light}};"
+
{| {| {{#Switch:{{{collapsible|no}}} |yes=class="collapsible collapsed"}} align="{{{align|center}}}" text-align="{{{text-align|center}}}" width="{{{width|100%}}}" style="background: {{{background color|#{{DarkColorSwitch}}}}}; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; -icab-border-top-left-radius: 5px; -o-border-top-left-radius: 5px; border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; -icab-border-bottom-left-radius: 5px; -o-border-bottom-left-radius: 5px;; border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; -icab-border-bottom-left-radius: 5px; -o-border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; -icab-border-bottom-right-radius: 5px; -o-border-bottom-right-radius: 5px;; border-radius: {{{Curve|10px}}}; -moz-border-radius: {{{Curve|10px}}}; -webkit-border-radius: {{{Curve|10px}}}; -khtml-border-radius: {{{Curve|10px}}}; -icab-border-radius: {{{Curve|10px}}}; -o-border-radius: {{{Curve|10px}}};; 1em; border: 5px solid #{{LightColorSwitch}};" padding="{{{padding|0px}}}"
 
|-
 
|-
 
| align="center" |  
 
| align="center" |  
{| {{#Switch:{{{sortable|no}}} |yes = class="sortable"}} border=1 width="100%" align="center" style="background: #FFFFFF; border:1px solid #{{yellow color}}; border-collapse:collapse;"
+
{| {{#Switch:{{{sortable|no}}} |yes = class="sortable"}} {{#switch:{{{plainlinks|no}}}|yes=class="plainlinks"}} border=1 width="100%" align="center" style="background: #{{DarkColorSwitch}}; border:1px solid #{{DarkColorSwitch}}; border-collapse:collapse;"
|- style="background: #{{yellow color light}}"
+
|- style="background: #{{LightColorSwitch}}"
 
{{{1}}}
 
{{{1}}}
 
|}
 
|}
|}<noinclude>
+
|}{{#switch:{{{clearall|yes}}}|yes=<br clear=all>|no=}}<noinclude>
  
 
== Usage ==
 
== Usage ==
 +
{{Main|Help:Table markup}}
 
Typical table structure should be like this:
 
Typical table structure should be like this:
 
<pre>
 
<pre>
 
{{Table|
 
{{Table|
{{TableHeader|A}}
+
{{TH|A}}
{{TableHeader|B}}
+
{{TH|B}}
{{TableHeader|C}}
+
{{TH|C}}
{{TableBodyTop|1}}
+
{{TBT|1}}
{{TableBody|2}}
+
{{TB|2}}
{{TableBody|3}}
+
{{TB|3}}
{{TableBodyTop|4}}
+
{{TBT|4}}
{{TableBody|5}}
+
{{TB|5}}
{{TableBody|6}}
+
{{TB|6}}
 
}}</pre>
 
}}</pre>
  
 
Makes:
 
Makes:
 
{{Table|
 
{{Table|
{{TableHeader|A}}
+
{{TH|A}}
{{TableHeader|B}}
+
{{TH|B}}
{{TableHeader|C}}
+
{{TH|C}}
{{TableBodyTop|1}}
+
{{TBT|1}}
{{TableBody|2}}
+
{{TB|2}}
{{TableBody|3}}
+
{{TB|3}}
{{TableBodyTop|4}}
+
{{TBT|4}}
{{TableBody|5}}
+
{{TB|5}}
{{TableBody|6}}
+
{{TB|6}}
 
}}
 
}}
  
The only difference between <nowiki>{{TableBodyTop}} and {{TableBody}}</nowiki> is that TableBodyTop has a <nowiki>|-</nowiki> at the top of it to separate that row from the next. Therefore, it should go at the top of each row.
+
The only difference between <nowiki>{{TBT}} and {{TB}}</nowiki> is that TBT has a <nowiki>|-</nowiki> at the top of it to separate that row from the next. Therefore, it should go at the top of each row.
  
<nowiki>{{TableColspan|Object to go in field|X}}</nowiki> Will add a "colspan" to the table, where "X" is the number of columns you want to take over. <nowiki>{{TableRowspan|Object to go in field|X}}</nowiki> will do the same, but with rows.
+
<nowiki>{{TCs|Object to go in field|X}}</nowiki> Will add a "colspan" to the table, where "X" is the number of columns you want to take over. <nowiki>{{TRs|Object to go in field|X}}</nowiki> will do the same, but with rows.
  
<nowiki>{{TableBodyTopRowspan|Object to go in field|X}}</nowiki> will do a rowspan for the first column of the table's row. The only difference being that there is a "<nowiki>|-</nowiki>" at the top of it.
+
<nowiki>{{TRsT|Object to go in field|X}}</nowiki> will do a rowspan for the first column of the table's row. The only difference being that there is a "<nowiki>|-</nowiki>" at the top of it.
  
<nowiki>{{TableColRowspan|Object to go in field|X|Y}}</nowiki> will add both a rowspan and a colspan. "X" is the rowspan number and "Y" is the colspan number in this case.
+
<nowiki>{{TCRs|Object to go in field|X|Y}}</nowiki> will add both a rowspan and a colspan. "X" is the rowspan number and "Y" is the colspan number in this case.
  
[[Category:Templates|{{PAGENAME}]][[Category:Table templates|{{PAGENAME}}]]</noinclude>
+
[[Category:Templates]][[Category:Table templates]]
 +
[[sv:Mall:Table]]</noinclude>

Latest revision as of 19:05, September 18, 2014

{{{1}}}

Usage

Main article: Help:Table markup

Typical table structure should be like this:

{{Table|
{{TH|A}}
{{TH|B}}
{{TH|C}}
{{TBT|1}}
{{TB|2}}
{{TB|3}}
{{TBT|4}}
{{TB|5}}
{{TB|6}}
}}

Makes:

A B C
1 2 3
4 5 6

The only difference between {{TBT}} and {{TB}} is that TBT has a |- at the top of it to separate that row from the next. Therefore, it should go at the top of each row.

{{TCs|Object to go in field|X}} Will add a "colspan" to the table, where "X" is the number of columns you want to take over. {{TRs|Object to go in field|X}} will do the same, but with rows.

{{TRsT|Object to go in field|X}} will do a rowspan for the first column of the table's row. The only difference being that there is a "|-" at the top of it.

{{TCRs|Object to go in field|X|Y}} will add both a rowspan and a colspan. "X" is the rowspan number and "Y" is the colspan number in this case.