UsefulLinks
Computer Science
Web Development
Frontend Frameworks and Libraries
Sass and SCSS
1. Introduction to CSS Preprocessing
2. Setting Up a Sass Development Environment
3. Sass Syntaxes
4. Core Sass Features
5. Reusability and Abstraction
6. Sass Data Types
7. Control Directives and Expressions
8. Functions
9. Advanced Concepts
10. Best Practices and Project Architecture
7.
Control Directives and Expressions
7.1.
Conditional Logic
7.1.1.
`@if` Directive
7.1.1.1.
Syntax and Usage
7.1.2.
`@else if` Directive
7.1.3.
`@else` Directive
7.1.4.
Nesting Conditionals
7.2.
Loops
7.2.1.
`@for` Loops
7.2.1.1.
Syntax and Usage
7.2.1.2.
`through` vs `to`
7.2.2.
`@each` Loops
7.2.2.1.
Iterating over Lists
7.2.2.2.
Iterating over Maps
7.2.3.
`@while` Loops
7.2.3.1.
Looping with Conditions
7.3.
Combining Control Directives
7.3.1.
Complex Logic Flows
Previous
6. Sass Data Types
Go to top
Next
8. Functions