Help:使用維基標記式語言增修表格/2/語法範例
外观
< Help:使用維基標記式語言增修表格 | 2
Data is arranged like final tableThis is useful when there aren't too many columns and the contents of the cells is short (e.g. just numbers). This is the markup layout that the {| class="wikitable" |- ! Header C1 !! Header C2 !! Header C3 |- | R1C1 || R1C2 || R1C3 |- | R2C1 || R2C2 || R2C3 |}
|
|
Cells are arranged verticallyWith lots of columns, or longer text contents in cells, putting each cell on a new line can help readability of the markup. {| class="wikitable" |- ! Header C1 ! Header C2 ! Header C3 |- | R1C1 | R1C2 | R1C3 |- | R2C1 | R2C2 | R2C3 |}
|