<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel>
<title>The Sass Way</title>
<link>https://thesassway.com/</link>
<description>CSS and Sass, explained the way you wish someone had explained it.</description>
<language>en</language>
<item><title>The Complete Guide to Sass/SCSS: From Setup to Scalable Stylesheets</title><link>https://thesassway.com/complete-guide-to-sass/</link><guid>https://thesassway.com/complete-guide-to-sass/</guid><description>Sass is a CSS preprocessor you write in an enhanced syntax with variables, nesting, mixins, and functions, then compile to plain CSS.</description></item>
<item><title>CSS Animations Tutorial: Keyframes, Transitions, and Timing</title><link>https://thesassway.com/css-animations-tutorial/</link><guid>https://thesassway.com/css-animations-tutorial/</guid><description>CSS animations come in two forms: transitions and keyframe animations.</description></item>
<item><title>The CSS Box Model: Margin, Border, Padding, and Content</title><link>https://thesassway.com/css-box-model/</link><guid>https://thesassway.com/css-box-model/</guid><description>The CSS box model describes every element as four nested layers: content in the center, padding around it, a border around the padding, and margin outside.</description></item>
<item><title>CSS Gradients: Linear, Radial, and Conic Explained</title><link>https://thesassway.com/css-gradients/</link><guid>https://thesassway.com/css-gradients/</guid><description>A CSS gradient is a smooth blend between two or more colors that the browser paints as an image, usable anywhere an image is valid.</description></item>
<item><title>CSS Grid Tutorial: Build a Responsive Layout Step by Step</title><link>https://thesassway.com/css-grid-tutorial/</link><guid>https://thesassway.com/css-grid-tutorial/</guid><description>CSS Grid is a two-dimensional layout system for building rows and columns at once.</description></item>
<item><title>CSS Media Queries: How to Make Your Site Responsive</title><link>https://thesassway.com/css-media-queries/</link><guid>https://thesassway.com/css-media-queries/</guid><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>https://thesassway.com/css-nesting-vs-sass-nesting/</guid><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>https://thesassway.com/css-preprocessors-vs-postcss/</guid><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>https://thesassway.com/css-specificity-explained/</guid><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>https://thesassway.com/css-units-guide/</guid><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>https://thesassway.com/css-variables-guide/</guid><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>
<item><title>A Complete Guide to Flexbox: Every Property, Explained</title><link>https://thesassway.com/flexbox-guide/</link><guid>https://thesassway.com/flexbox-guide/</guid><description>Flexbox is a one-dimensional CSS layout system for arranging items along a single axis.</description></item>
<item><title>Flexbox vs CSS Grid: Which Layout Should You Actually Use?</title><link>https://thesassway.com/flexbox-vs-grid/</link><guid>https://thesassway.com/flexbox-vs-grid/</guid><description>Use Flexbox for one-dimensional layouts (a single row or column) like navbars, toolbars, and the inside of cards, where content drives the spacing.</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>https://thesassway.com/how-to-center-a-div/</guid><description>To center a div horizontally and vertically, set its parent to display: flex, then add justify-content: center and align-items: center.</description></item>
<item><title>How to Install and Compile Sass (npm, CLI, and Dart Sass)</title><link>https://thesassway.com/how-to-install-sass/</link><guid>https://thesassway.com/how-to-install-sass/</guid><description>Install Sass with npm by running npm install -D sass in your project, which gives you Dart Sass, the official implementation.</description></item>
<item><title>Mobile-First CSS: Why It Matters and How to Do It Right</title><link>https://thesassway.com/mobile-first-css/</link><guid>https://thesassway.com/mobile-first-css/</guid><description>Mobile-first CSS means writing your base styles for the smallest screen first, then using min-width media queries to progressively add complexity as the.</description></item>
<item><title>Responsive Web Design: The Complete Guide for 2026</title><link>https://thesassway.com/responsive-design-guide/</link><guid>https://thesassway.com/responsive-design-guide/</guid><description>Responsive web design is the practice of building one website that adapts to any screen size, from small phones to large desktops, instead of maintaining.</description></item>
<item><title>Responsive Images in CSS: srcset, sizes, and object-fit</title><link>https://thesassway.com/responsive-images-css/</link><guid>https://thesassway.com/responsive-images-css/</guid><description>Responsive images in CSS require two jobs working together: the HTML srcset and sizes attributes tell the browser to download an appropriately sized file.</description></item>
<item><title>Sass Mixins vs Functions: When to Use Each</title><link>https://thesassway.com/sass-mixins-vs-functions/</link><guid>https://thesassway.com/sass-mixins-vs-functions/</guid><description>Use a Sass mixin when you want to inject a block of CSS declarations into a rule, invoked with @include.</description></item>
<item><title>Sass vs SCSS: What&#39;s the Difference and Which Should You Use?</title><link>https://thesassway.com/sass-vs-scss/</link><guid>https://thesassway.com/sass-vs-scss/</guid><description>Sass and SCSS are two syntaxes for the same preprocessor, both compiled by Dart Sass into identical CSS.</description></item>
</channel></rss>
