1.0.2 • Published 8 years ago

postcss-selector-prefixer v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

postcss-selector-prefixer Build Status npm version

PostCSS plugin for selector prefixer.

.foo {
  /* Input example */
  color: red;
}
.myPrefix_foo {
  /* Output example */
  color: red;
}

Demo

Gif Demo

Usage

postcss([ require('postcss-selector-prefixer')({ prefix: 'myPrefix_' }) ])

See PostCSS docs for examples for your environment.