Related topics: Main Help, Wikipedia Tables
A Simple Example
Edit
Basic Table Wiki Markup
Edit
Wikitable Class
Edit
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:
|
Cell Borders
Edit
Alignment
Edit
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:
A |
B |
C
|
500 |
200 |
Cat
|
300 |
400 |
Aardvark
|
100 |
50 |
Yak
|
|
Captions
Edit
Nested Tables
Edit
Colspan and Rowspan
Edit
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"
|
Decimal Point Alignment
Edit