How To Use Tables: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Related|Help:Contents{{!}}Main Help|wikipedia:Help:Table{{!}}Wikipedia Tables}} | |||
__TOC__ | |||
{| | == A Simple Example == | ||
=== Basic Table Wiki Markup == | |||
=== Wikitable Class === | |||
The "wikitable" class provides a nice looking table without having to remember or specify all the details each time you create a table. This is because the wikitable class in [[MediaWiki:Common.css]] contains a number of table.wikitable CSS style rules. These are all applied at once when you mark a table with this class. You can then add additional style rules if desired. These override the class's rules, allowing you to use the class style as a base and build up on it. | |||
{|cellpadding=20 | |||
|-valign=top | |-valign=top | ||
| | |'''Code:'''<br> | ||
<pre style="width:160px"> | |||
{|class="wikitable" | |||
!A | |||
!B | |||
| | |||
|- | |- | ||
|100 | |||
|200 | |||
|} | |} | ||
</pre> | |||
|'''Result:'''<br> | |||
{|class="wikitable" | |||
!A | |||
!B | |||
|- | |||
|100 | |||
|200 | |||
|} | |||
|} | |||
== Colors == | |||
== Cell Borders == | |||
== Alignment == | |||
== Sorting == | |||
Tables can be made sortable by adding <code>class="sortable"</code>. For more details see [[wikipedia:Help:Sorting|Help:Sorting]]. If the table already has a class qualifier add sortable separated by a space, for example <code>class="wikitable sortable"</code>. | |||
{|cellpadding=20 | |||
|-valign=top | |||
|'''Code:'''<br> | |||
<pre style="width:240px"> | |||
{|class="wikitable sortable" | |||
!A !!B !!C | |||
|- | |||
|500 ||200 ||Cat | |||
|- | |||
|300 ||400 ||Aardvark | |||
|- | |||
|100 ||50 ||Yak | |||
|- | |||
|} | |||
</pre> | |||
|'''Result:'''<br> | |||
{|class="wikitable sortable" | |||
!A !!B !!C | |||
|- | |||
|500 ||200 ||Cat | |||
|- | |||
|300 ||400 ||Aardvark | |||
|- | |||
|100 ||50 ||Yak | |||
|- | |||
|} | |||
|} | |||
== Captions == | |||
== Nested Tables == | |||
== Colspan and Rowspan == | |||
== Frames == | == Frames == | ||
Line 148: | Line 204: | ||
|} | |} | ||
== Decimal Point Alignment == | |||
[[Category:Help]] | [[Category:Help]] | ||
[[Category:In Progress]] | [[Category:In Progress]] |
Revision as of 00:54, 31 March 2010
Related topics: Main Help, Wikipedia Tables
A Simple Example
= Basic Table Wiki Markup
Wikitable Class
The "wikitable" class provides a nice looking table without having to remember or specify all the details each time you create a table. This is because the wikitable class in MediaWiki:Common.css contains a number of table.wikitable CSS style rules. These are all applied at once when you mark a table with this class. You can then add additional style rules if desired. These override the class's rules, allowing you to use the class style as a base and build up on it.
Code:{|class="wikitable" !A !B |- |100 |200 |} |
Result:
|
Colors
Cell Borders
Alignment
Sorting
Tables can be made sortable by adding class="sortable"
. For more details see Help:Sorting. If the table already has a class qualifier add sortable separated by a space, for example class="wikitable sortable"
.
Code:{|class="wikitable sortable" !A !!B !!C |- |500 ||200 ||Cat |- |300 ||400 ||Aardvark |- |100 ||50 ||Yak |- |} |
Result:
|
Captions
Nested Tables
Colspan and Rowspan
Frames
This example demonstrates how to use the "frame" attribute to control the borders around a table. The thickness of the lines can be specified using "border" and the width in pixels. The frame feature is only supported in modern browsers. The first nine examples change only the frame parameter, the last three also change the border:
{|frame="??" !A !B |- |100 |200 |}
frame="border"
|
frame="above"
|
frame="below"
| ||||||||||||
frame="hsides"
|
frame="vsides"
|
frame="lhs"
| ||||||||||||
frame="rhs"
|
frame="box"
|
frame="void"
| ||||||||||||
frame="border" border="3"
|
frame="hsides" border="2"
|
frame="vsides" border="3"
|