How can you select the first and the last TD in a row?
TD
tr > td[0], tr > td[-1] { /* styles */ }
If you use sass(scss) you can use the following snippet:
tr > td{ /* styles for all td*/ &:first-child{ /* styles for first */ } &:last-child{ /* styles for last*/ } }