1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-11 02:10:45 +00:00
notes/node_modules/stylelint/lib/rules/selector-root-no-composition/README.md
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

36 lines
443 B
Markdown

# selector-root-no-composition
***Deprecated: See [CHANGELOG](../../../CHANGELOG.md).***
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 {}
```