el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
129 lines (97 loc) • 1.66 kB
Markdown
# selector-pseudo-element-case
Specify lowercase or uppercase for pseudo-element selectors.
<!-- prettier-ignore -->
```css
a::before {}
/** ↑
* This pseudo-element selector */
```
The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
## Options
`string`: `"lower"|"upper"`
### `"lower"`
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a:Before {}
```
<!-- prettier-ignore -->
```css
a:bEfOrE {}
```
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::Before {}
```
<!-- prettier-ignore -->
```css
a::bEfOrE {}
```
<!-- prettier-ignore -->
```css
a::BEFORE {}
```
<!-- prettier-ignore -->
```css
input::-MOZ-PLACEHOLDER {}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a:before {}
```
<!-- prettier-ignore -->
```css
a::before {}
```
<!-- prettier-ignore -->
```css
input::-moz-placeholder {}
```
### `"upper"`
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a:Before {}
```
<!-- prettier-ignore -->
```css
a:bEfOrE {}
```
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::Before {}
```
<!-- prettier-ignore -->
```css
a::bEfOrE {}
```
<!-- prettier-ignore -->
```css
a::before {}
```
<!-- prettier-ignore -->
```css
input::-moz-placeholder {}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a:BEFORE {}
```
<!-- prettier-ignore -->
```css
a::BEFORE {}
```
<!-- prettier-ignore -->
```css
input::-MOZ-PLACEHOLDER {}
```