From a9c5cf3072b42131eb2da7ac289e256a04a03710 Mon Sep 17 00:00:00 2001 From: carpaIdea Date: Tue, 12 Apr 2016 23:07:27 +0200 Subject: [PATCH]
semantic element IE fix Some versions of Internet Explorer consider the
semantic element as "unknown". So its initial value is "inline".If we want the behavior of the
element to be the same as in other browsers, we must set it explicitly as a "block." --- applications/examples/static/css/stupid.css | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/examples/static/css/stupid.css b/applications/examples/static/css/stupid.css index 1bce96e4..2a9a321b 100644 --- a/applications/examples/static/css/stupid.css +++ b/applications/examples/static/css/stupid.css @@ -28,6 +28,7 @@ tbody tr {border-bottom:2px solid #f1f1f1} td, th {padding: 5px; text-align: left; vertical-align:top} thead th {vertical-align:bottom} header, footer {with:100%} +main {display: block;} /* IE fix */ @media all and (max-width:599px) { h1{font-size:2em}