Ducati Monster Forum

Kitchen Sink => Board Tech Issues => Fixed Board Issues => Topic started by: Capo on October 18, 2008, 01:21:28 PM

Title: Tables
Post by: Capo on October 18, 2008, 01:21:28 PM
How do you put a table in a post ?
?
Title: Re: Tables
Post by: darylbowden on October 18, 2008, 01:25:41 PM
Quote from: Capo on October 18, 2008, 01:21:28 PM
How do you put a table in a post ?
?

Are you familiar with HTML markup?  They work almost the same, you basically replace the <> with [], otherwise the markup is the same.

A tip.  You need a [ table ] and that is the container.  Inside of that you need a [ tr ], that defines the row.  Then, for each cell in that row, you would have a [ td ].  All without the spaces obviously.
Title: Re: Tables
Post by: somegirl on October 19, 2008, 08:32:57 PM
Here's a simple example:


 
   
   
   
   
Col ACol BCol C
Row 1A1B1C1
Row 2A2B2C2
Row 3A3B3C3


[table]
  [tr]
    [td] [/td][td]Col A[/td][td]Col B[/td][td]Col C[/td]
  [/tr]
  [tr]
    [td]Row 1[/td][td]A1[/td][td]B1[/td][td]C1[/td]
  [/tr]
  [tr]
    [td]Row 2[/td][td]A2[/td][td]B2[/td][td]C2[/td]
  [/tr]
  [tr]
    [td]Row 3[/td][td]A3[/td][td]B3[/td][td]C3[/td]
  [/tr]
[/table]