Convert SCSS to CSS format
SCSS to CSS is a very lightweight text transform, not a real Sass compiler: it strips // comments and rewrites simple &:hover / &.class parent-selector patterns, entirely in your browser. It does not flatten nested rule blocks, resolve $variables, expand mixins, or evaluate math — nested SCSS selectors are passed through as literally nested braces, which is not valid CSS.
Does this tool fully compile SCSS, like the real Sass compiler?
No — it only strips comments and rewrites a couple of & selector patterns. Nesting, $variables, @mixin, @import, and Sass math aren't processed at all.
Is SCSS to CSS free to use?
Yes, it's completely free with no signup required.
What happens to nested selectors, like .parent { .child { ... } }?
They're left as literally nested braces in the output, which isn't valid CSS — nesting isn't flattened by this tool.
Is my code uploaded to a server?
No, processing happens entirely in your browser.