What's the difference between SCSS and Sass?

前端 未结 13 2057
忘掉有多难
忘掉有多难 2020-11-22 14:51

From what I\'ve been reading, Sass is a language that makes CSS more powerful with variable and math support.

What\'s the difference with SCSS? Is it supposed to be

13条回答
  •  孤城傲影
    2020-11-22 15:14

    Sass was the first one, and the syntax is a bit different. For example, including a mixin:

    Sass: +mixinname()
    Scss: @include mixinname()
    

    Sass ignores curly brackets and semicolons and lay on nesting, which I found more useful.

提交回复
热议问题