<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel>
<title>The Sass Way</title>
<link>https://thesassway.com/</link>
<atom:link href="https://thesassway.com/rss.xml" rel="self" type="application/rss+xml"/>
<description>CSS and Sass, explained the way you wish someone had explained it.</description>
<language>en</language>
<lastBuildDate>Tue, 08 Sep 2026 09:00:00 GMT</lastBuildDate>
<item><title>Sass Partials: File Structure and CSS Ownership</title><link>https://thesassway.com/sass-partials-file-structure/</link><guid isPermaLink="true">https://thesassway.com/sass-partials-file-structure/</guid><pubDate>Tue, 08 Sep 2026 09:00:00 GMT</pubDate><description>Sass partials are source files, conventionally named with a leading underscore, that another stylesheet loads instead of treating as separate build entries.</description></item>
<item><title>CSS Animations Tutorial: Keyframes, Transitions, and Timing</title><link>https://thesassway.com/css-animations-tutorial/</link><guid isPermaLink="true">https://thesassway.com/css-animations-tutorial/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>A CSS keyframe animation combines an @keyframes rule with an animation declaration.</description></item>
<item><title>The CSS Box Model: Margin, Border, Padding, and Content</title><link>https://thesassway.com/css-box-model/</link><guid isPermaLink="true">https://thesassway.com/css-box-model/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>The CSS box model describes a box as content surrounded by padding, border, and margin.</description></item>
<item><title>CSS Grid Tutorial: Build a Responsive Layout Step by Step</title><link>https://thesassway.com/css-grid-tutorial/</link><guid isPermaLink="true">https://thesassway.com/css-grid-tutorial/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>CSS Grid lays out rows and columns together. Start with `display: grid`, define tracks with `grid-template-columns`, and use `gap` for gutters.</description></item>
<item><title>How to Center a Div in CSS (5 Ways That Actually Work)</title><link>https://thesassway.com/how-to-center-a-div/</link><guid isPermaLink="true">https://thesassway.com/how-to-center-a-div/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>To center a div on both axes, set its parent to display: flex, justify-content: center, and align-items: center, then give the parent usable height such…</description></item>
<item><title>The Complete Guide to Sass/SCSS: From Setup to Scalable Stylesheets</title><link>https://thesassway.com/complete-guide-to-sass/</link><guid isPermaLink="true">https://thesassway.com/complete-guide-to-sass/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>Sass compiles SCSS into browser-ready CSS and adds build-time variables, modules, mixins, functions, maps, and loops.</description></item>
<item><title>CSS Gradients: Linear, Radial, and Conic Explained</title><link>https://thesassway.com/css-gradients/</link><guid isPermaLink="true">https://thesassway.com/css-gradients/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>A CSS gradient is a browser-generated image that blends two or more color stops.</description></item>
<item><title>CSS Cascade Layers: Control Priority with @layer</title><link>https://thesassway.com/css-cascade-layers/</link><guid isPermaLink="true">https://thesassway.com/css-cascade-layers/</guid><pubDate>Tue, 25 Aug 2026 09:00:00 GMT</pubDate><description>CSS cascade layers group styles into an explicit priority order with `@layer`.</description></item>
<item><title>Sass Variables: How to Declare, Scope, and Reuse Them</title><link>https://thesassway.com/sass-variables-guide/</link><guid isPermaLink="true">https://thesassway.com/sass-variables-guide/</guid><pubDate>Fri, 21 Aug 2026 09:00:00 GMT</pubDate><description>Sass variables store reusable values — colors, sizes, font stacks — declared with a dollar sign, like $brand-color: #1f7a5e;.</description></item>
<item><title>Sass vs CSS: What&#39;s the Difference and When to Use Sass</title><link>https://thesassway.com/sass-vs-css/</link><guid isPermaLink="true">https://thesassway.com/sass-vs-css/</guid><pubDate>Thu, 20 Aug 2026 09:00:00 GMT</pubDate><description>CSS is the stylesheet language browsers run natively; Sass is a preprocessor that extends CSS with variables, nesting, mixins, functions, and a module…</description></item>
<item><title>CSS clamp() Explained: Fluid Typography Without Breakpoints</title><link>https://thesassway.com/css-clamp-fluid-typography/</link><guid isPermaLink="true">https://thesassway.com/css-clamp-fluid-typography/</guid><pubDate>Fri, 07 Aug 2026 09:00:00 GMT</pubDate><description>CSS clamp() takes three values — clamp(min, preferred, max) — and returns the preferred value as long as it stays between the minimum and maximum.</description></item>
<item><title>CSS Container Queries: Style Components by Their Own Size</title><link>https://thesassway.com/css-container-queries/</link><guid isPermaLink="true">https://thesassway.com/css-container-queries/</guid><pubDate>Thu, 06 Aug 2026 09:00:00 GMT</pubDate><description>CSS container queries style an element based on the size of its parent container rather than the viewport.</description></item>
<item><title>Sass Maps Explained: @each Loops and Design Tokens in SCSS</title><link>https://thesassway.com/sass-maps-guide/</link><guid isPermaLink="true">https://thesassway.com/sass-maps-guide/</guid><pubDate>Wed, 05 Aug 2026 09:00:00 GMT</pubDate><description>A Sass map is a data structure that stores key-value pairs inside parentheses, like $colors: (&quot;primary&quot;: #0d6efd, &quot;danger&quot;: #dc3545).</description></item>
<item><title>Sass @use vs @import: How to Migrate Off Deprecated Imports</title><link>https://thesassway.com/sass-use-vs-import/</link><guid isPermaLink="true">https://thesassway.com/sass-use-vs-import/</guid><pubDate>Tue, 04 Aug 2026 09:00:00 GMT</pubDate><description>@use is the modern replacement for Sass&#39;s deprecated @import rule.</description></item>
<item><title>CSS Media Queries: How to Make Your Site Responsive</title><link>https://thesassway.com/css-media-queries/</link><guid isPermaLink="true">https://thesassway.com/css-media-queries/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>A CSS media query applies styles only when the browser meets a condition, usually viewport width.</description></item>
<item><title>Native CSS Nesting vs Sass Nesting: What Changed and What to Use</title><link>https://thesassway.com/css-nesting-vs-sass-nesting/</link><guid isPermaLink="true">https://thesassway.com/css-nesting-vs-sass-nesting/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>Sass nesting is a build-time feature that compiles to flat CSS and glues selectors as text, so `&amp;__title` becomes `.card__title`.</description></item>
<item><title>CSS Preprocessors vs PostCSS: Sass, Less, and Tailwind Compared</title><link>https://thesassway.com/css-preprocessors-vs-postcss/</link><guid isPermaLink="true">https://thesassway.com/css-preprocessors-vs-postcss/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>A CSS preprocessor (Sass, Less, Stylus) is a complete language that compiles to CSS with built-in variables, mixins, and loops.</description></item>
<item><title>CSS Specificity Explained: How the Cascade Decides Which Style Wins</title><link>https://thesassway.com/css-specificity-explained/</link><guid isPermaLink="true">https://thesassway.com/css-specificity-explained/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>CSS specificity is the scoring system browsers use to decide which rule wins when several target the same element.</description></item>
<item><title>CSS Units Explained: px vs em vs rem vs % vs vw</title><link>https://thesassway.com/css-units-guide/</link><guid isPermaLink="true">https://thesassway.com/css-units-guide/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>CSS units are either absolute (px, which never changes) or relative (em, rem, %, vw, vh, which scale against a reference).</description></item>
<item><title>How to Use CSS Custom Properties (Variables) the Right Way</title><link>https://thesassway.com/css-variables-guide/</link><guid isPermaLink="true">https://thesassway.com/css-variables-guide/</guid><pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate><description>CSS variables, or custom properties, store a reusable value declared with a double-hyphen name like --brand and read with the var() function.</description></item>
</channel></rss>
