Normalize only the left margin of lists. Fix #49

Prevent the addition of vertical margins on nested lists without
interferred with author expectations when customising margins
directly on 'ul' or 'ol' selectors later in the stylesheet.

Left margin needs to be normalized to remove it from IE6/7.

Close #57
This commit is contained in:
Nicolas Gallagher 2011-11-04 15:38:33 +00:00
parent 77e9ef4952
commit 3404fcb8b9

4
normalize.css vendored
View File

@ -1,4 +1,4 @@
/*! normalize.css 2011-11-04T15:36 UTC - http://github.com/necolas/normalize.css */ /*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */
/* ============================================================================= /* =============================================================================
HTML5 display definitions HTML5 display definitions
@ -239,7 +239,7 @@ sub {
ul, ul,
ol { ol {
margin: 1em 0; margin-left: 0;
padding: 0 0 0 40px; padding: 0 0 0 40px;
} }