I am wondering what is Quirks mode in IE8 Developer toolbar? Why page rendering is different in Quirks mode than in IE8 standard mode?

link|improve this question

79% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Simply speaking, it is for really old webpages to show in the way it always has been on IE. So if a webpage's HTML doesn't start with a DOCTYPE that indicates Standard Compliance Mode, then IE will show it in Quirks mode. In such mode, IE uses its own Box Model to render the page elements.

A simple example is: IE's box model adds padding to the inside of the width, so a div occupies the width number of pixels, but Standard Compliance mode add the padding to the width, so a div will occupy width + padding number of pixels.

You can try a div with width 300px and padding 100px and click between the modes in IE Developer's bar to see the difference.

More info at: http://en.m.wikipedia.org/wiki/Quirks_mode

link|improve this answer
feedback

I think it will be useful : http://www.quirksmode.org/css/quirksmode.html.

link|improve this answer
feedback

Quirks mode is basically a legacy mode that allows IE to render web pages that were written back in the day where no one adhered to html standards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.