Sass
New Features • Custom CSS Functions, Null Safety, and Dark Mode Support Available Now!

Sass Documentation

Comprehensive guides, tutorials, and references for mastering Sass's powerful CSS features and tools.

Core Documentation Features

Variables & Mixins

Create reusable styles with variables, nested rules, and powerful mixins.

Learn more →

Functions & Operators

Leverage built-in functions, custom operators, and math for dynamic styles.

Learn more →

Responsive Design

Create adaptive layouts with media queries and fluid grids.

Learn more →

Get Started in Minutes

Learn the basics of Sass syntax, compilation, and how to implement it in your projects.

Example: Variables


$primary-color: #036;
$border-radius: 8px;

.btn {
  background: $primary-color;
  border-radius: $border-radius;
}

            

Advanced Topics

Mixins

Create reusable code blocks with parameters for custom styles and behaviors.

Explore advanced mixins →

Control Flow

Use if/else statements, loops, and logic in your stylesheet development.

Learn conditional logic →