mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
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:
parent
77e9ef4952
commit
3404fcb8b9
4
normalize.css
vendored
4
normalize.css
vendored
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user