I have a table of class players with 5 columns and 40 rows. I want to make the second column have width: 200px.
players
width: 200px
I can not figure out how to se
This should work (except on IE8 and below):
table.players td:nth-child(2) { width: 200px; }