Skip to content

Latest commit

 

History

History
57 lines (41 loc) · 744 Bytes

File metadata and controls

57 lines (41 loc) · 744 Bytes

selector-not-notation

Options

string: "simple"|"complex"

"simple"

The following patterns are considered problems:

:not(a, div) {}
:not(a.foo) {}

The following patterns are not considered problems:

:not(a):not(div) {}
:not(a) {}

"complex"

The following pattern is considered a problem:

:not(a):not(div) {}

The following patterns are not considered problems:

:not(a, div) {}
:not(a.foo) {}
:not(a).foo:not(:empty) {}