This is my first post and I don't know how to structure the code any differently.
First off everything displays fine and if I have 22 different ids it would validate fine too.
In my table, the column is styled by nth child to align everything centre.
If I class the TD, then the class gets overridden by the TR nth child
So I have currently this HTML
<td colspan="2" id="statsdiv">Total of Houses..</td>
And this CSS
#statsdiv {text-align:right;}
.table1861 tr td:first-child {
text-align:center;
}
I have 355 rows in the table, and 22 need to be aligned to the right hand side. Surely I don't need to have the same ID with 22 different suffixes
Thank you