- How much does CSS minification save?
- Typically 15–30% for hand-formatted CSS; 5–10% for already-compact build output. Gzip compresses the minified file further on top of that.
- What gets removed?
- Comments, whitespace between selectors and declarations, trailing semicolons, optional quotes around URL values, and leading zeros in 0.5em-style lengths. Character content inside url() and content: is preserved.
- Is the minified CSS still readable?
- No — it's a single dense line. Use the CSS Formatter or Beautifier to re-expand it for editing.
- Will it break vendor prefixes?
- No. Minification is purely syntactic; -webkit-, -moz-, and -ms- prefixes are treated as normal properties and kept untouched.