The latest release of _normalize.scss for Sass 3.3/Compass 1.0 (and later) is: 3.0.2+normalize.3.0.2. It combines normalize.css v3.0.2 and normalize v1.1.3.
The latest release of _normalize.scss for Sass 3.2/Compass 0.12 is: 2.2.0+normalize.2.1.3. It combines normalize.css v2.1.3 and normalize v1.1.3.
This project is the Sass/Compass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use the best partials from Compass to make Normalize even easier to integrate with your website. To learn about why Normalize.css is so amazing, skip to the "normalize.css" section below.
This Sass/Compass port currently utilizes:
- Browser Support variables
- CSS3 Box Sizing mixin
- Vertical Rhythm mixins
In addition, Normalize.css has 2 major versions: version 3 (without legacy browser support) and version 1 (with support for IE 6/7, etc.) This Compass port combines the two versions into one file so that you can easily toggle between the two versions using Compass' Browser Support variables.
Did a client wait until the last minute to mention their CEO uses IE 6? Simply
update your $browser-minimum-versions
variable and recompile your Sass files.
Details can be found at https://github.com/JohnAlbin/normalize-scss/wiki
Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.
The project relies on researching the differences between default browser styles in order to precisely target only the styles that need or benefit from normalizing.
- Preserves useful defaults, unlike many CSS resets.
- Normalizes styles for a wide range of elements.
- Corrects bugs and common browser inconsistencies.
- Improves usability with subtle improvements.
- Explains what code does using detailed comments.
Install using one of the following methods:
- Download directly from the project page.
- Install with Bower:
bower install --save normalize.scss
- Install with Component(1):
component install JohnAlbin/normalize-scss
- Install with Ruby Gem:
gem install normalize-scss
Note: if you want to alter the _normalize.scss file after installation (see "how to use it" below), you can use thegem list --details normalize-scss
command to show you where the normalize-scss files were installed.
There is a fantastic introduction to the project and brief instructions how to use it in the About normalize.css article.
To use the Compass port of Normalize, simply:
- copy the _normalize.scss file to your sass directory (or if installed with
Ruby Gem, add
require "normalize-scss"
to your config.rb file.) - import the partial into your main Sass file with
@import "normalize";
- and follow the "About normalize.css" article's suggestions:
- Approach 1: use
_normalize.scss
as a starting point for your own project's base Sass, customising the values to match the design's requirements. (The best approach, IMO.) - Approach 2: include
_normalize.scss
untouched and build upon it, overriding the defaults later in your Sass when necessary.
- Google Chrome (latest)
- Mozilla Firefox (latest)
- Mozilla Firefox 4
- Opera (latest)
- Apple Safari 6+
- Internet Explorer 6+
The exact browsers supported in your project is controlled by Compass' Support variables. See https://github.com/JohnAlbin/normalize-scss/wiki
Additional detail and explanation of the esoteric parts of normalize.css.
The font-family: monospace, monospace
hack fixes the inheritance and scaling
of font-size for preformated text. The duplication of monospace
is
intentional. Source.
Normally, using sub
or sup
affects the line-box height of text in all
browsers. Source.
Adding overflow: hidden
fixes IE9's SVG rendering. Earlier versions of IE
don't support SVG, so we can safely use the :not()
and :root
selectors that
modern browsers use in the default UA stylesheets to apply this style. SVG
Mailing List discussion
The search input is not fully stylable by default. In Chrome and Safari on
OSX/iOS you can't control font
, padding
, border
, or background
. In
Chrome and Safari on Windows you can't control border
properly. It will apply
border-width
but will only show a border color (which cannot be controlled)
for the outer 1px of that border. Applying -webkit-appearance: textfield
addresses these issues without removing the benefits of search inputs (e.g.
showing past searches).
Adding border: 0
corrects an IE 8–11 bug where color
(yes, color
) is not
inherited by legend
.
Please read Necolas' contributing guidelines.
Updates to most CSS rules should be reported to Necolas' upstream Normalize.css project. Updates to the Sass should be reported in the Normalize-scss project.
Normalize.css is a project by Nicolas Gallagher, co-created with Jonathan Neal.
This Sass/Compass port is a project by John Albin Wilkins.
For the record, there are several other Sass or Compass ports as well. Including:
- https://github.com/waynegraham/compass-normalize-plugin
- https://github.com/ksmandersen/compass-normalize
- https://github.com/hail2u/normalize.scss
- https://github.com/kristerkari/normalize.scss
Some of the above projects convert normalize into Sass mixins. That makes it impossible to add Normalize using Approach 1 (by copying the file into your website and customizing/overriding for your needs.)