What Is the Difference Between Css and Scss?
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? 1 6 Answers in...
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 Answers
In addition to Idriss answer:
Must Read
CSS
In CSS we write code as depicted bellow, in full length.
body{
width: 800px;
color: #ffffff;
}
body content{
width:750px;
background:#ffffff;
}