定位表中的特定列

Joh*_*Doe 8 css css-tables

我有一个players包含5列和40行的类表.我想让第二列有width: 200px.

我无法弄清楚如何选择表中的特定列.到目前为止,我已将其缩小到这个范围,但这会对表中的所有行进行缩减.有人可以帮我设置特定列的列宽吗?

table.players td 
{

}
Run Code Online (Sandbox Code Playgroud)

bfa*_*tto 16

这应该工作(IE8及以下除外):

table.players td:nth-child(2) { width: 200px; }
Run Code Online (Sandbox Code Playgroud)