Skip to content

Commit

Permalink
Add summary to the block-level display rule for HTML5 elements
Browse files Browse the repository at this point in the history
Legacy browsers, including IE6/7 and Firefox 3, do not make the
new HTML5 `summary` element block-level by default. This is
contrary to the HTML5 recommendations and the behaviour of modern
browsers.
  • Loading branch information
necolas committed Feb 7, 2012
1 parent cb17683 commit 5e5496c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions normalize.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! normalize.css 2012-02-07T10:31 UTC - http://github.com/necolas/normalize.css */
/*! normalize.css 2012-02-07T12:37 UTC - http://github.com/necolas/normalize.css */

/* =============================================================================
HTML5 display definitions
Expand All @@ -17,7 +17,8 @@ footer,
header,
hgroup,
nav,
section {
section,
summary {
display: block;
}

Expand Down

0 comments on commit 5e5496c

Please sign in to comment.