css - Targeting specific column in table -
i have table of class players
5 columns , 40 rows. want make second column have width: 200px
.
i can not figure out how select specific column in table. far have narrowed down this, of rows in table. can me set column width specific column?
table.players td { }
this should work (except on ie8 , below):
table.players td:nth-child(2) { width: 200px; }
Comments
Post a Comment