Before and after
.button {
background-color: #0070f3;
padding: 8px 16px;
border-radius: 4px;
/* primary action */
}.button{background-color:#0070f3;padding:8px 16px;border-radius:4px}Remove whitespace and comments from CSS to reduce file size.
The result will appear here.
Was this tool useful?
Every byte of CSS your server sends is a byte the browser has to download and parse. Minification removes comments, strips unnecessary whitespace, collapses shorthand values, and eliminates redundant semicolons — typically shrinking files by 20–60% without changing how they render.
.button {
background-color: #0070f3;
padding: 8px 16px;
border-radius: 4px;
/* primary action */
}.button{background-color:#0070f3;padding:8px 16px;border-radius:4px}