Compress CSS by removing comments and collapsing whitespace. See the exact byte savings before you deploy.
/* … */) — Developer notes and section headers invisible to the browser. Often 5–20% of a stylesheet.{, }, :, ;, and , are removed where safe.; before a closing } is optional in CSS and can be safely removed./*! … */ kept — Important comments (license headers, IE hacks) are preserved by default. Uncheck to remove everything.Tip: CSS minification is especially valuable for large stylesheets with significant whitespace. Combined with gzip on your web server, you typically get 80–90% size reduction on CSS files.
} are all safe operations — the browser parses the result identically to the original. The only edge case is content inside content: "…" strings, which this tool preserves untouched.