body {
background: red;
}
.header {
background: black;
}
body {
background: red;
}
#scope .header {
background: black;
}
npm i -D postcss-simple-scope
// .postcssrs.cjs
module.exports = {
plugins: [
require('postcss-simple-scope')({
scope: '#scope', // required
atRules: {
exclude: ['keyframes', '-webkit-keyframes', '-moz-keyframes'], // default
}, // optional
selectors: {
exclude: [':root', '*', 'html', 'body'], // default
}, // optional
}),
],
};