Pattern: Inconsistent pseudo-class selector case
Issue: -
Specify lowercase or uppercase for pseudo-class selectors.
The following patterns are considered violations:
a:Hover {}
a:hOvEr {}
a:HOVER {}
:ROOT {}
:-MS-INPUT-PLACEHOLDER {}
The following patterns are not considered violations:
a:hover {}
:root {}
:-ms-input-placeholder {}
The following patterns are considered violations:
a:Hover {}
a:hOvEr {}
a:hover {}
:root {}
:-ms-input-placeholder {}
The following patterns are not considered violations:
a:HOVER {}
:ROOT {}
:-MS-INPUT-PLACEHOLDER {}