标签: css css-selectors
尝试选择除第一次出现的类之外的类。 为什么这不起作用
.myClass:not(.myClass:first)
ps只有css no jquery,这个是jquery How to select all except the first occurence of a class
答案 0 :(得分:2)
使用nth-child
nth-child
.myClass:nth-child(n+2) { //style here }
以下是Demo