Is there a simple way to set the text alignment of all cells in the second column to right?
Or is the only way is to set the alignment for each cell in
I believe that the following would work and not require annotating the second cell of each row with a class.
td:first-child + td { text-align: right; }
This rule would select a td immediately following a td that is the first child of its parent. In a typical table this would select the second cell in each row.