What is the difference between CSS and SCSS?

后端 未结 6 1412
执念已碎
执念已碎 2020-12-12 12:24

I know CSS very well, but am confused about Sass. How is SCSS different from CSS, and if I use SCSS instead of CSS will it work the same?

6条回答
  •  情话喂你
    2020-12-12 12:55

    css has variables as well. You can use them like this:

    --primaryColor: #ffffff;
    --width: 800px;
    
    body {
        width: var(--width);
        color: var(--primaryColor);
    }
    .content{
        width: var(--width);
        background: var(--primaryColor);
    }
    

提交回复
热议问题