I want my page to be rendered in Quirks mode in IE6, IE7 and IE8. I want to keep all other browsers (recent versions) in HTML5 standards mode.
What does not work:
- Put the DOCTYPE declaration into second line (known measure in IE, but will trigger quirks in IE9 as well)
- Omit the DOCTYPE declaration (will trigger quirks in at least FF, MDN docs)
Any ideas, how I could accomplish this via purely HTML measures?
Some background:
Because of heavy usage of the border box model, my page layout happens to render best if the older IEs are in Quirks mode.
Support for box-sizing did not appear in IE before version 8.
There is sum other stuff, that also works better in IE8 quirks.
My use of the border box model:
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;