Skip to content

CSS ↔ SCSS

New

Nest flat CSS into SCSS and flatten simple nested SCSS back to CSS (best-effort, no mixins).

  • Processed in your browser
  • Privacy-first
  • No account required
  • Nothing uploaded by default

Examples

CSS to SCSS

.card { color: teal; }
.card .title { font-size: 18px; }
.card {
  color: teal;
  & .title {
    font-size: 18px;
  }
}