CSS Selector,选择除第一次出现的类之外的类

时间:2014-01-23 08:46:21

标签: css css-selectors

尝试选择除第一次出现的类之外的类。 为什么这不起作用

.myClass:not(.myClass:first)

ps只有css no jquery,这个是jquery How to select all except the first occurence of a class

1 个答案:

答案 0 :(得分:2)

使用nth-child

.myClass:nth-child(n+2) {
        //style here
    }

以下是Demo