Table bbcode

Messages from the admins

Moderator: Moderators

User avatar
otseng
Savant
Posts: 20490
Joined: Thu Jan 15, 2004 1:16 pm
Location: Atlanta, GA
Has thanked: 197 times
Been thanked: 335 times
Contact:

Table bbcode

Post #1

Post by otseng »

The table bbcode has been added.

The easiest way to generate a table is to press the table icon between the subject and the post area at the far right. Then press the size of the table you want to create. It will autogenerate the bbcode for the table.

Example code:

Code: Select all

[table]
	[thead]
		[tr]
			[th]Title1[/th]
			[th]Title2[/th]
		[/tr]
	[/thead]
	[tbody]
		[tr]
			[td]Text11[/td]
			[td]Text21[/td]
		[/tr]
		[tr]
			[td]Text12[/td]
			[td]Text22[/td]
		[/tr]
	[/tbody]
[/table]
It will display as:
Title1 Title2
Text11 Text21
Text12 Text22

Post Reply