From 5e5496c026a0211ac2fdfd62cb59e25455dced55 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Tue, 7 Feb 2012 12:37:29 +0000 Subject: [PATCH] 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. --- normalize.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/normalize.css b/normalize.css index 15a8f81..eecef92 100644 --- a/normalize.css +++ b/normalize.css @@ -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; }