Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 970 Bytes

File metadata and controls

45 lines (30 loc) · 970 Bytes

selector-max-pseudo-class

Limit the number of pseudo-classes in a selector.

.foo .bar:first-child:hover {}
/*       ↑           ↑
         |           |
         1           2 -- this selector contains two pseudo-classes */

This rule resolves nested selectors before counting the number of pseudo-classes in a selector. Each selector in a selector list is evaluated separately.

The content of the :not() pseudo-class is also evaluated separately. The rule processes the argument as if it were an independent selector, and the result does not count toward the total for the entire selector.

选项

int: Maximum pseudo-classes allowed.

例如,使用 1

以下模式被视为违规:

a:first-child:focus {}
.foo .bar:first-child:hover {}

以下模式被视为违规:

a {}
a:first-child {}
.foo .bar:first-child {}