Skip to content
Snippets Groups Projects
Commit b2ec9c4c authored by catch's avatar catch
Browse files

Issue #1321678 by Jacine: Provide default styling for block-level HTML5 elements.

parent 3312541e
No related branches found
No related tags found
No related merge requests found
...@@ -259,3 +259,23 @@ html.js .js-hide { ...@@ -259,3 +259,23 @@ html.js .js-hide {
zoom: 1; /* hasLayout trigger to clear floats in IE */ zoom: 1; /* hasLayout trigger to clear floats in IE */
} }
/**
* Block-level HTML5 display definition.
*
* Provides display values for browsers that don't recognize the new elements
* and therefore display them inline by default.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
display: block;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment