SyntaxFix
Write A Post
Hire A Developer
Questions
You can use :nth-child(N) CSS selector like :
table td:first-child {} //1 table td:nth-child(2) {} //2 table td:nth-child(3) {} //3 table td:last-child {} //4