postcss-bind-attr
v1.0.2
Published
Bound an attribute of your choosing to every selectors which specify tags
Downloads
3
Readme
postcss-bind-attr
Bound an attribute of your choosing to every selectors which specify tags.
Usage
const postcss = require('postcss')
const bindAttr = require('postcss-bind-attr')
const css = `
a.hello {
& .world { color: red; }
}
`
const out = postcss()
.use(bindAttr('bound-attr'))
.process(css)
.toString()
console.log(out)
// a[bound-attr].hello {
// & .world[bound-attr] { color: red; }
// }
Example
Attributes are not bound under :root
pseudo selector.
input.css
:root a {
& .nested {}
}
.base {
& .nested {}
}
a.with-class#with-id {}
a[with-attr='hello'] {}
output.css
:root a {
& .nested {}
}
.base[bound-attr] {
& .nested[bound-attr] {}
}
a[bound-attr].with-class#with-id {}
a[bound-attr][with-attr='hello'] {}
Installation
$ npm install postcss-bind-attr