CSS Minifier
Unminified CSS
Minify
Minified CSS 

Online Free CSS Minifier

  • Minifies CSS to a single line.
  • Removes white spaces and line breaks.
  • Removes all comments.
  • Removes extra semi-colons.
  • Reduces the size of the style sheet to minimize online loading time.
  • Can change the number of spaces of indentation.
  • Minifies as you type.
  • Minifies on paste.

Sample

/* Comment */  
body {
    background-color: blue;
    color: white;
  }
  h1 {
    background–color: purple;
  }

Converts to:

body{background-color:blue}h1{background–color:purple}