1.0.0 • Published 7 years ago

postcss-email-important v1.0.0

Weekly downloads
976
License
MIT
Repository
github
Last release
7 years ago

postcss-email-important

This plugin will format your !important rules to an email safe format. See this email bug for more.

Installation

npm install postcss-email-important --save

Usage

postcss([ require('postcss-email-important') ])
// do your processing here 🎉

Or use it in some other PostCSS way.

Example

You put this in....

a {
  color: blue   !IMPORTAnt;
}

and you get this out...

a {
  color: blue!important;
}