node-pixrem
node-pixrem copied to clipboard
CSS post-processor that generates pixel fallbacks for rem units.
I have a ton of sites that have to work in IE 8 - this made dealing with them so much easier. THANK YOU!
I'm using node-pixrem to generate a seperate IE8 file and include it with a conditional comment. That means that the browser is parsing the mainIE8.css after main.css. It would be...
I personally prefer to write plain vanilla `px` units and have the build process to convert them to `rem`. I've been using [node-px2rem](https://github.com/ggkovacs/node-px2rem) for that and it works great, but...