A slightly simpler way to achieve alternate row colors in a table is to use nth-child and you don't then need to specifically apply a class to each alternate row, for example:
table.wiki-content-table tr { background-color: #fff; } table.wiki-content-table tr:nth-child(odd) { background-color:#eee; }
Rob Elliott - Strathpeffer, Scotland - Wikidot first line support & community admin team.




