nth-of-type:除了n之外的所有

时间:2014-07-07 14:55:54

标签: jquery css

我想知道是否有方法将css / jquery应用于除第n个元素以外的所有元素。

我猜我可以设置一个css来应用于所有元素,然后使用第n个元素撤消该css:

li {
    background-color: green
}

li:nth-of-type(1) {
    background-color: white
}

但有没有办法直接用一个陈述来做到这一点?

1 个答案:

答案 0 :(得分:7)

使用:not()

li:not(:nth-of-type(1)) {
    background-color: white
}