UNPKG

stylelint

Version:
34 lines (23 loc) 384 B
# 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 {} ```