Book Image

Sass and Compass Designer's Cookbook

By : Bass Jobsen, Stuart Robson
Book Image

Sass and Compass Designer's Cookbook

By: Bass Jobsen, Stuart Robson

Overview of this book

Sass and Compass Designer's Cookbook helps you to get most out of CSS3 and harness its benefits to create engaging and receptive applications. This book will help you develop faster and reduce the maintenance time for your web development projects by using Sass and Compass. You will learn how to use with CSS frameworks such as Bootstrap and Foundation and understand how to use other libraries of pre-built mixins. You will also learn setting up a development environment with Gulp. This book guides you through all the concepts and gives you practical examples for full understanding.
Table of Contents (23 chapters)
Sass and Compass Designer's Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Using @each


The @each control directive in Sass can be used to read the items of a list or map. In this recipe, you will learn how to use the @each control directive to dynamically create your CSS code.

Getting ready

You can use the Ruby Sass command-line compiler to compile the SCSS code into static CSS code. You can read about how to install and use the Ruby Sass command-line compiler in the Installing Sass for command line usage recipe of Chapter 1, Getting Started with Sass.

How to do it...

Perform the following steps to understand how to use the @each directive in Sass:

  1. Create a Sass file called list.scss that will contain an SCSS code like that shown here:

    $class-names: first, second, third;
    
    @each $class in $class-names {
      .#{$class} {
         color: white;
       }
    }
  2. Then, run the following command in your console:

    sass list.scss
    
  3. The compiled CSS code from the previous step should look like that shown here:

     .first {
      color: white; }
    
    .second {
      color: white; }
    
    .third {
      color: white; }

How...