← Back to Tools

SCSS to CSS Converter

Compile SCSS to plain CSS in the browser. Supports variables, nesting, mixins, and more.

SCSS Input 0 lines
CSS Output
Tip: Press Ctrl+Enter to convert quickly.

What This Converter Supports

FeatureStatusExample
Variables ($var: value)Yes$primary: #333; color: $primary;
NestingYes.parent { .child { } }
& selectorYes.btn { &:hover { } &--active { } }
// commentsYes (stripped)// this is removed
/* */ commentsYes (kept)/* this is kept */
@mixin / @include (no args)Yes@mixin flex { display:flex; } @include flex;
@mixin with argumentsPartialSingle default value supported
@extendNoNot supported
@each / @for loopsNoNot supported
@functionNoNot supported
Interpolation (#{})PartialSimple variable interpolation only