What will be covered in this article:

  1. Comments
  2. Nesting
  3. Variables
  4. Import and use
  5. Mixins and Include
  6. Extend
  7. Functions and if/else
  8. Loops
  9. Media Queries

1. Comments

The way Sass comments work differs substantially between SCSS and the indented syntax. Both syntaxes support two types of comments: comments defined using /* */ that are (usually) compiled to CSS, and comments defined using // that are not.

// This comments
	// will not be compiled
	// and will not be in css

	/* But this comment will */

#sass #mixin #loop #nesting #media-queries

Sass is a stylesheet language that’s compiled to CSS
1.20 GEEK