[tr]
[td]Row 1 Column 1[/td]
[td]Row 1 Column 2[/td]
[/tr]
[tr]
[td]Row 2 Column 1[/td]
[td]Row 2 Column 2[/td]
[/tr]
[/table]
IMPORTANT: You need to meet the structure of
[table] to wrap the entire table, [tr] to wrap the row and [td] to wrap the row column.They have a static design which means columns will be respected on any screen size.
Tables includes support for some attributes (other HTML attributes like id, class or style are also supported):
[table align="right" border="2px solid" width="90%"]
[tr]
[td]Row 1 Column 1[/td]
[td]Row 1 Column 2[/td]
[/tr]
[tr]
[td]Row 2 Column 1[/td]
[td]Row 2 Column 2[/td]
[/tr]
[/table]
Even you can define the width of each individual column:
[table align="right" border="2px solid" width="90%"]
[tr]
[td]Row 1 Column 1[/td]
[td="30%"]Row 1 Column 2[/td]
[/tr]
[tr]
[td]Row 2 Column 1[/td]
[td="30%"]Row 2 Column 2[/td]
[/tr]
[/table]
This BBCode also supports common HTML attributes.