1.0.0 • Published 8 years ago
postcss-email-important v1.0.0
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 --saveUsage
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;
}1.0.0
8 years ago