CSS Normlize and CSS reset

Notes:

Reset Reasoning

What browser inconsistencies bothered developers enough to create this?

What to notice: The original problem CSS resets solved.

Modern CSS

What to notice: What changed between 2007 and now?

Why does Josh modify or reject parts of Meyer's approach?

Killer Collection

The variety of approaches (aggressive resets vs. gentle normalization)

 
     * {
         padding: 0;
         margin: 0;
       }
            

Prominent Features:

Aggressive Resets

Prominent Features:

Questions:

Why reset at all? (What problem does it solve?)

Why Josh's version over Eric's?

How do you actually use these? (Link tag? Import? Inline?)

What's a CSS boilerplate? (vs. a reset)

Why use a boilerplate? (When does it help/hurt?)

Why is Normalize.css different from resets? (Philosophy shift)