Tables
Tables are good for formatting DATA. Like normal tables there are headers and then cells. Unlike normal HTML tables, these are actually pretty easy to configure...
[t]
[r][h]Header1[h]Header2
[r][c]Cell One[c]Cell Two
[r][c]Cell One[c]Cell Two
[t]
[r][h]Header1[h]Header2
[r][c]Cell One[c]Cell Two
[r][c]Cell One[c]Cell Two
[t]
| Header1 | Header2 |
|---|---|
| Cell One | Cell Two |
| Cell One | Cell Two |
Styling Tables
You can if you have defined, use styles too... Same as above but using the style class of status, as well as forcing the first column to be 200px wide:
[t class=status]
[r][h style='width: 200px;']Header1[h]Header2
[r][c]Cell One[c]Cell Two
[r][c]Cell One[c]Cell Two
[t]
[r][h style='width: 200px;']Header1[h]Header2
[r][c]Cell One[c]Cell Two
[r][c]Cell One[c]Cell Two
[t]
| Header1 | Header2 |
|---|---|
| Cell One | Cell Two |
| Cell One | Cell Two |

