For easier formattting:
You can put the simple table into another new one with one row/cell ( nested):
Have a look: ( the background color is now defined per cell , could be per row ro table…
| cell_content |
cell_content |
cell_content |
cell_content |
| cell_content |
cell_content |
cell_content |
cell_content |
| cell_content |
cell_content |
cell_content |
cell_content |
| cell_content |
cell_content |
cell_content |
cell_content |
|
Done with :
[[table style="text-align: center; border: 0px solid silver; margin: auto;"]]
[[row]]
[[cell style="background-color: #DDDDEE;"]]
||cell_content||cell_content||cell_content||cell_content||
||cell_content||cell_content||cell_content||cell_content||
||cell_content||cell_content||cell_content||cell_content||
||cell_content||cell_content||cell_content||cell_content||
[[/cell]]
[[/row]]
[[/table]]
Border-collapse
In the first solution with table tag there is the problem that the style attribute :
border-collapse: with the 2 parameter values seperate and collapse
by default set is to "seperate" - means there are borders around the table AND the cell.
if you do not wantthis "new" layout than you need to write into the table tag:
[[table style="....; border-collapse: collapse;"]] instead of the default "seperate" !
Hope this helps too? :)
Regards
Helmut