convert css to scss code example

Example 1: watch scss to css

sass --watch scss:css

Example 2: sass to scss

# You can do it with SASS itself 
# Nevermind these malware infested sites below
sass-convert style.sass style.scss

Example 3: css sass scss

/*SMART DIFFERENCE*/
/*CSS*/
body {
  font: 100% Helvetica, sans-serif;
  color: #333;
}

/*SCSS*/

$font-stack:    Helvetica, sans-serif;
$primary-color: #333;

body {
  font: 100% $font-stack;
  color: $primary-color;
}


/*SASS*/
$font-stack:    Helvetica, sans-serif
$primary-color: #333

body
  font: 100% $font-stack
  color: $primary-color

Example 4: scss to css

/* Answer to: "scss to css" */

/*
  You can convert SCSS to CSS here:
  https://jsonformatter.org/scss-to-css

  Wanna convert it back? Google "css to scss" and see my answer there!
*/

Example 5: scss to css

In Visual Studio Code use this extension: "Live Sass Compiler"

Example 6: scss to css

Use the "Live Sass Compiler" in Visual Studio Code

Tags:

Misc Example