9

我有一个players5 列 40 行的类表。我想让第二列有width: 200px.

我不知道如何选择表中的特定列。到目前为止,我已将其范围缩小到这一点,但这适用于表中的所有行。有人可以帮我设置特定列的列宽吗?

table.players td 
{

}
4

1 回答 1

19

这应该有效(IE8 及以下版本除外):

table.players td:nth-child(2) { width: 200px; }
于 2012-07-02T02:09:15.957 回答