#selector-pseudo-element-case

指定伪元素选择器的大小写。

    a::before {}
/**    ↑
 * 这是伪元素选择器 */

#选项

string: "lower"|"upper"

#"lower"

以下模式被视为违规:

a:Before {}
a:bEfOrE {}
a:BEFORE {}
a::Before {}
a::bEfOrE {}
a::BEFORE {}
input::-MOZ-PLACEHOLDER {}

以下模式被视为违规:

a:before {}
a::before {}
input::-moz-placeholder {}

#"upper"

以下模式被视为违规:

a:Before {}
a:bEfOrE {}
a:BEFORE {}
a::Before {}
a::bEfOrE {}
a::before {}
input::-moz-placeholder {}

以下模式被视为违规:

a:BEFORE {}
a::BEFORE {}
input::-MOZ-PLACEHOLDER {}