Editing guidelines
++ +
Tables
+ +Creating tables on the wiki is quite simple, however there are certain requirements to make a table display correctly.
+Visits Table basics on MDN for more information about tables.
+-
+
- All tables must contain the + thead + and + tbody + section. +
- Tables cannot contain any attributes other than id (which is rarely used for wiki tables). +
- Cells of a table heading must use the <th> tag to get styled correctly. +
Table elements reference:
+Element name | +Description | +
---|---|
<table> | +The main table container | +
<thead> | +Table's header section | +
<tbody> | +Table's content section | +
<tr> | +Table row | +
<th> | +Heading cell | +
<td> | +Generic cell | +