Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 356 Bytes

File metadata and controls

29 lines (21 loc) · 356 Bytes

selector-root-no-composition

Disallow the composition of:root selectors.

    a, :root {}
/** ↑  ↑
 * This type of composite selector */

The following patterns are considered warnings:

a, :root {}
:root + a {}
html:root {}

The following patterns are not considered warnings:

:root {}