Currently this doesn't work (tested en/it.wiki IE10/FF45):
{| class="wikitable"
|- style="background-color:yellow"
! column1 !! column2 !! column3
|}You have to set styles cell by cell, which is annoying:
{| class="wikitable"
|-
! style="background-color:yellow" | column1 !! style="background-color:yellow" | column2 ...
|}The example is for color, but it's the same for other styles like text-align.
I propose to set the CSS style of headers by row, not by cell, so it can be overridden by row.
Something like this normally works:
.wikitable tr th { background-color:... }