1.0.2 • Published 9 years ago
postcss-selector-prefixer 
 
PostCSS plugin for selector prefixer.
.foo {
  /* Input example */
  color: red;
}
.myPrefix_foo {
  /* Output example */
  color: red;
}
Demo

Usage
postcss([ require('postcss-selector-prefixer')({ prefix: 'myPrefix_' }) ])
See PostCSS docs for examples for your environment.