I'm widely using css formatting and define class for table with subclasses for thead, tbody, tfoot and another level of subclasses for tr, th, td....
In some cases I want to make whole column for table to have class with certain style... but don't know how to do that.
Is there any way (using HTML5, css3, anything else?) to make all cells in certain column of tbody to have the same class?
I can specify class explicitly (manually), but I would like to avoid that kind of duplication.
Any thoughts are welcome.
P.S. Probably I should not bother myself with that and just explicitly specify class for each cell?