/* For IE 7 & 8 (and other browsers without CSS3 support not including IE6) you can use the following to get the 2nd and 3rd children: */
/* 2nd Child: */
td:first-child + td
/* 3rd Child: */
td:first-child + td + td
/* Then simply add another + td for each additional child you wish to select. */
/* For IE9+ and modern browsers */
/* for the second td */
td:nth-child(2) {
}
/* for the third td */
td:nth-child(3) {
}
/* via: http://stackoverflow.com/questions/5664773/how-can-i-get-the-second-child-using-css */