Free CSS Minifier Online — Uttir
Uttir

CSS Minifier

Shrink CSS by stripping comments, collapsing whitespace, and tightening punctuation. See byte savings live.

CSS Minifier — CSS minification removes comments, collapses whitespace, drops the last semicolon in a rule, and tightens the spaces around punctuation. The result is a CSS file that is functionally identical to the source but typically 20-40% smaller.

CSS never leaves your browser.

Was CSS Minifier useful?

What is css minifier?

CSS minification removes comments, collapses whitespace, drops the last semicolon in a rule, and tightens the spaces around punctuation. The result is a CSS file that is functionally identical to the source but typically 20-40% smaller.

Use this when you have a hand-written stylesheet and want a quick minified copy without setting up a build pipeline. For production projects, run your CSS through a proper tool (cssnano, lightningcss) as part of your build.

How to use it

  1. Paste your CSS

    A snippet, a file, or an entire stylesheet.

  2. Read the result

    The minified CSS appears instantly.

  3. Copy

    One click to put the minified CSS on your clipboard.

Examples

Comment stripping

A simple comment-and-whitespace example.

/* header */ .a { color: red; }

Result: .a{color:red}

Punctuation tightening

Spaces around { } ; : , are removed.

a , b > c { color : red ; }

Result: a,b>c{color:red}

Perguntas frequentes

Comparison: this tool vs the alternatives

Uttir CSS Minifier vs CSSNano (CLI)

FeatureUttirCSSNano (CLI)
No upload to a server✓✓
No signup / no install✓✗
No build pipeline required✓✗
Removes whitespace + comments✓✓
Advanced transforms (merge rules, optimize calc)✗✓
Run in browser, copy paste ready✓✗

Related guides

Ferramentas relacionadas

Last reviewed: 2026-09-24