stylelint
Version:
A mighty, modern CSS linter.
34 lines (23 loc) • 384 B
Markdown
# selector-root-no-composition
Disallow the composition of `:root` in selectors.
```css
a, :root {}
/** ↑ ↑
* This type of composite selector */
```
## Options
### `true`
The following patterns are considered warnings:
```css
a, :root {}
```
```css
:root + a {}
```
```css
html:root {}
```
The following patterns are *not* considered warnings:
```css
:root {}
```