I would like to add a CSS class name "currency" to the header (th) of my table's column and have all the children data cells (td) in the column align to the right.
I'm no CSS wiz kid so my best attempt is :
table th.currency td {
text-align: right;
}
However this obviously does NOT work. I tried to make it direct decendants ">" but that didn't work either.
I'd like to avoid adding the individual "currency" class name to ALL the td cells. Anybody got a solution?
Thanks!