SyntaxFix
Write A Post
Hire A Developer
Questions
You could use the n-th child selector.
to target the nth element you could then use:
td:nth-child(n) { /* your stuff here */ }
(where n starts at 1)
n