Add summary to the block-level display rule for HTML5 elements

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.
This commit is contained in:
Nicolas Gallagher 2012-02-07 12:37:29 +00:00
parent cb176831b9
commit 5e5496c026

5
normalize.css vendored
View File

@ -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
@ -17,7 +17,8 @@ footer,
header,
hgroup,
nav,
section {
section,
summary {
display: block;
}