How would I select all the children in a table except for the first and last? I\'ve tried this, but it ends up selecting all children that aren\'t first and all children tha
like this.
li:nth-child(n+2):nth-last-child(n+2) { background: red; }
for your requirement
table.programs tr td:nth-child(n+2):nth-last-child(n+2) { /* Your Style */ }