R2D001 – Sass: Nest CSS with Sass //freeCodeCamp.org

Objective: Sass allows nesting of CSS rules, which is a useful way of organizing a style sheet.Normally, each element is targeted on a different line to style it, like so: For a large project, the CSS file will have many lines and rules. This is where nesting can help organize your code by placing child… Continue reading R2D001 – Sass: Nest CSS with Sass //freeCodeCamp.org

R2D001 – Sass: Store Data with Sass Variables //freeCodeCamp.org

Here we go, first exercise for freeCodeCamp.org today! Objective: One feature of Sass that’s different than CSS is it uses variables. They are declared and set to store data, similar to JavaScript.In JavaScript, variables are defined using the let and const keywords. In Sass, variables start with a $ followed by the variable name.Here are… Continue reading R2D001 – Sass: Store Data with Sass Variables //freeCodeCamp.org