- What's the difference between Beautifier and Formatter?
- The Beautifier is more opinionated — it reorders shorthand properties and normalizes quote styles. The Formatter only adjusts indentation and line breaks. Use the Beautifier for one-time cleanup, the Formatter for git-safe re-indenting.
- Will it merge duplicate selectors?
- No — beautification preserves the source order and grouping. Use a CSS optimizer (csso, cssnano) if you want structural rewrites.
- Does it handle modern CSS?
- Yes — nested selectors (CSS Nesting), container queries, @layer, and :has() all beautify correctly.
- Can I configure the output style?
- Toggle between 2-space, 4-space, or tab indentation. More detailed style preferences (comma placement, blank-line rules) aren't exposed — that's Prettier's territory.