Format CSS
Paste CSS, get it formatted and validated. Everything runs in this tab, so pasting a config file with credentials in it is not a mistake.
- Runs entirely in your browser
- Works offline
- No upload
- No sign-up
- No watermark
Loading the tool…
How it works
- Paste your CSS or drop a file.
- Choose the indent and print width.
- Format, then copy or download the result.
Why nothing is uploaded
Every operation on this page is done by code running inside your browser tab, using the same engine that renders web pages. The file is read from disk into your tab’s memory, transformed there, and written back out as a download. It is never sent anywhere — not to us, not to a third party.
Verify it yourself
- Open your browser’s developer tools (F12) and select the Network tab.
- Load your file and run the tool.
- The only requests you will see are the tool’s own code and, once cached, none at all.
Frequently asked questions
Why does this matter more than for other formatters?
Because the things people paste into online formatters are configuration files, API responses and query logs — the exact files that contain tokens, internal hostnames and personal data. Here the text stays in the tab; there is no endpoint to send it to.
What happens if my input is invalid?
You get the parser’s own error message and position instead of silent damage. Nothing is written back over your input, so you can fix it and try again.
Why is there no minify button here?
Because minifying this language properly means parsing and rewriting it, not deleting whitespace with a regular expression. Doing it badly breaks files silently, so it is offered only for JSON and XML, where it is safe.