cssunminifier icon indicating copy to clipboard operation
cssunminifier copied to clipboard

A tool to unminify CSS—written in node.js

Results 5 cssunminifier issues
Sort by recently updated
recently updated
newest added

While using your tool to unminify a min.css file, I noticed some errors that were created in the final deminified file, which all dealt with the "negation pseudo-class". So, I...

IMHO, this .hide-for-print { display : none; } should become .hide-for-print { display: none; }

This will be unminified with a break after `data:image/png;` and will make the `background-image unusable.` ``` css .test {color:#000;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAA4AgMAAAAED9f9AAAACVBMVEUAAABmZmZmZmaO3ZBrAAAAA3RSTlMA5rA5MyM4AAAAJElEQVQ4y2MYOUA1FAEiEMKiSMIheIUxDRkFo9Ew2MFoeBMDAPLUMTllKtkfAAAAAElFTkSuQmCC);} ```

This was part of the result of un-minifying a stylesheet: ``` .pnd-img { width: auto; height: auto; position: relative; max-width: 100%} ``` Whereas the expected result is: ``` .pnd-img {...