You can use the :nth-child
pseudo class like this:
.countTable table table td:nth-child(2)
Note though, this won’t work in older browsers (or IE), you’ll need to give the cells a class or use javascript in that case.
You can use the :nth-child
pseudo class like this:
.countTable table table td:nth-child(2)
Note though, this won’t work in older browsers (or IE), you’ll need to give the cells a class or use javascript in that case.