Skip to content

CSS Minifier

Minify CSS instantly online. Reduce file size, remove comments and whitespace, track savings with live stats.

Updated

What is the CSS Minifier?

How it works

Examples

Basic CSS Minification

body {
  color: blue;
  font-size: 16px;
  /* This is a comment */
  margin: 0 10px 0 10px;
}
body{color:blue;font-size:16px;margin:0 10px}

Complex Stylesheet Optimization

.card {
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

@media (max-width: 640px) {
  .card {
    padding: 1rem;
  }
}
.card{background:white;box-shadow:0 4px 6px rgba(0,0,0,.1);padding:1.5rem}@media(max-width:640px){.card{padding:1rem}}

Frequently asked questions