What is the difference between CSS and SCSS?
In addition to Idriss answer: CSS In CSS we write code as depicted bellow, in full length. body{ width: 800px; color: #ffffff; } body content{ width:750px; background:#ffffff; } SCSS In SCSS we can shorten this code using a @mixin so we don’t have to write color and width properties again and again. We can define … Read more