From 3404fcb8b966373340e9428d21cccb0b4801d7c0 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Fri, 4 Nov 2011 15:38:33 +0000 Subject: [PATCH] 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 --- normalize.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/normalize.css b/normalize.css index c5919a3..9776813 100644 --- a/normalize.css +++ b/normalize.css @@ -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 @@ -239,7 +239,7 @@ sub { ul, ol { - margin: 1em 0; + margin-left: 0; padding: 0 0 0 40px; }