developers.do

CSS Minifier / Beautifier

Minify CSS by stripping comments and whitespace, or beautify minified CSS with re-indentation — preserves spaces inside parentheses for values like rgba(0,0,0,0.5)

.header{background:#f5f5f5;color:#333}@media (min-width:600px){.header{display:flex;align-items:center}}
.header {
  background:#f5f5f5;
  color:#333
}
@media (min-width:600px) {
  .header {
    display:flex;
    align-items:center
  }
}

Strips /* comments */, removes whitespace, and tightens structural punctuation. Spaces inside parenthesised values are preserved so calc(100% - 10px) and rgba(0, 0, 0, 0.5) keep their inner structure in the minified form.