WIKIPEDIA TABLES - Can they use COLSPAN HTML command ?

  • Thread starter Thread starter Gordon S
  • Start date Start date
G

Gordon S

Guest
Hi, I'm editing a Wiki page (its not Wikipedia - that was just an example)...

Is there a WIKI command to replace the HTML 'Colspan' command ?
 
Sure, you can replicate the Colspan command with the following wikitext markup:

{| border="1" cellpadding="5" cellspacing="0"
|-
| Column 1 || Column 2 || Column 3
|-
| rowspan="2"| A
| colspan="2" align="center"| B
|-
| C <!-- column 1 occupied by cell A -->
| D
|-
| E
| rowspan="2" colspan="2" align="center"| F
|-
| G <!-- column 2+3 occupied by cell F -->
|-
| colspan="3" align="center"| H
|}
 
Back
Top