Tables

Started by Capo, October 18, 2008, 01:21:28 PM

Previous topic - Next topic

Capo

How do you put a table in a post ?
?


Capo de tuti capi

darylbowden

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.

somegirl

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]
Need help posting pictures?  Check out the photo FAQ.