使用CSS在表格中选择除了一个td以外的所有内容

时间:2011-11-02 15:22:21

标签: css

我正在寻找一种方法来除了一些以外的一切。如果我想在表格中选择除特定td之外的所有内容,如何仅使用css实现此目的?

3 个答案:

答案 0 :(得分:4)

如果你的特定td有一个类名,那么:

table td { background: red; }
table td.particular { background: white; } /* inherit, auto, etc */

答案 1 :(得分:1)

有几种方法可以做到这一点。例如

给出共同财产

table tr td{background:red}

表示特定元素

table tr td:nth-child(3){background:green};

还有其他:last-child, :first-child

答案 2 :(得分:1)

CSS3中还有一个:not()伪类,它做类似的事情。这里也是工作演示http://jsfiddle.net/raynesax/Ps48t/1/