- Does the formatter validate my CSS?
- No — it formats any CSS-shaped input, including invalid rules. Use a linter (Stylelint) for validation.
- Will it sort properties alphabetically?
- Not by default. Alphabetical ordering is a team style choice — toggle 'sort properties' if you want it, but leave off to preserve logical grouping (layout, box model, typography, colors).
- How does it handle @media and @supports blocks?
- Nested block structure is indented one level deeper. Media queries stay in source order; the formatter doesn't merge or reorder them.
- Is the output Prettier-compatible?
- The defaults match Prettier's CSS output for 2-space indentation. If your repo uses Prettier, run it after this tool for full consistency.