Skip to content
John Albin Wilkins edited this page Nov 22, 2015 · 41 revisions

Installation and usage instructions can be found in the project README: https://github.com/JohnAlbin/normalize-scss

The Support-For module

The Support-For module is a simple solution to ensuring you only get the CSS output you need for the browsers you want to support.

For example, by default, normalize-scss supports IE 9 and later as well as the last 4 versions of all other browsers. If you want to add support for IE 8, you just need to set one variable:

$support-for: (
  ie:  8, // Support IE 8 and alter
  '*': -4 // Support the last 4 versions of all browsers.
);

More examples of how to use $support-for can be seen on the Support-For homepage.

Clone this wiki locally