我想知道是否有方法将css / jquery应用于除第n个元素以外的所有元素。
我猜我可以设置一个css来应用于所有元素,然后使用第n个元素撤消该css:
li {
background-color: green
}
li:nth-of-type(1) {
background-color: white
}
但有没有办法直接用一个陈述来做到这一点?
答案 0 :(得分:7)
使用:not()
:
li:not(:nth-of-type(1)) {
background-color: white
}