The below example will demonstrate how to create a table in your post.
My Perfectly Fine Example Table |
Heading Column 1 | Heading Column 2 |
Example data row 1, column 1 | Example data row 1, column 2 |
Example data row 2, column 1 | Example data row 2, column 2 |
Here is the raw bbcode for the above:
[table] border="1"
|-
| class="tcat" colspan="2" align="center" | My Perfectly Fine Example Table
|-
| style="font-style: italic" | Heading Column 1
| style="font-style: italic" | Heading Column 2
|-
| Example data row 1, column 1
| Example data row 1, column 2
|-
| Example data row 2, column 1
| Example data row 2, column 2
[/table]
And here is a more complex table example:
My Perfectly Fine More Complex Example Table |
Heading Column 1 | Heading Column 2 | Heading Column 3 | Heading Column 4 |
Example data row 1, column 1 | Example data row 1, column 2 | Example data row 1, column 3 | Example data row 1, column 4 |
Example data row 2, column 1 | Example data row 2, column 2 | Example data row 2, column 3 | Example data row 2, column 4 |
Example data row 3, column 1 | Example data row 3, column 2 | Example data row 3, column 3 | Example data row 3, column 4 |
Which you can reproduce by using this code below:
[table] border="1"
|-
| class="tcat" colspan="4" align="center" | My Perfectly Fine More Complex Example Table
|-
| style="font-style: italic; font-weight: bold; background-color: DarkViolet; color: white" | Heading Column 1
| style="font-style: italic; font-weight: bold; color: DarkMagenta" | Heading Column 2
| style="font-style: italic; font-weight: bold; color: green" | Heading Column 3
| style="font-style: italic; font-weight: bold; color: red" | Heading Column 4
|-
| style="background-color: green; color: white" | Example data row 1, column 1
| Example data row 1, column 2
| Example data row 1, column 3
| Example data row 1, column 4
|-
| Example data row 2, column 1
| Example data row 2, column 2
| style="background-color: PowderBlue; color: white" | Example data row 2, column 3
| Example data row 2, column 4
|-
| Example data row 3, column 1
| Example data row 3, column 2
| Example data row 3, column 3
| style="background-color: red; color: white" | Example data row 3, column 4
[/table]