-
所有其他规则都将被PostCSS插件postcss-add-root-selector添加根选择器
资源介绍
PostCSS添加根选择器
插件将根选择器添加到所有其他规则中。
输入:
. foo {
color : red;
}
a . foo ,
section {
color : red;
}
@media ( max-width : 700 px ) {
# some-id {
color : red;
}
}
/* html and body selectors will be popped up */
html ,
body . desktop {
font-family : sans-serif;
}
body . desktop . bar {
font-weight : bold;
}
/* self-applied declarations of html and body selectors will be not touched */
/*