Cross browser CSS3 with Compass
In the Using vendor prefixes recipe, you can read about how to create a cross-browser background gradient with Sass and Compass. In this recipe, you will learn how to create the same gradient by using the Compass CSS3 module.
Getting ready
The Installing Sass for command line usage recipe of Chapter 1, Getting Started with Sass, describes how to install Ruby Sass on your system. Also, study how to use Compass in Chapter 6, Using Compass. You should read the Using vendor prefixes recipe of this chapter first; it describes how to create the same cross-browser background gradient without using Compass.
How to do it...
See how Compass can help you to create cross-browser background gradient in the following steps:
Create your main project file called
main.scss
. This file should import the gradient partial file. So,main.scss
should contain a SCSS code like that shown here:// scss-lint:disable ColorKeyword, ColorVariable @import 'components/gradients'; header { ...