Skip to content

Files

Latest commit

 

History

History
43 lines (27 loc) · 965 Bytes

selector-max-pseudo-class.md

File metadata and controls

43 lines (27 loc) · 965 Bytes

Pattern: Too many pseudo-classes in selector

Issue: -

Description

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.

Examples

int: Maximum pseudo-classes allowed.

For example, with 1:

The following patterns are considered violations:

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

The following patterns are not considered violations:

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

Further Reading