show/hide this revision's text 2 Added info on IE Blog and document.compatMode

Adding an XML prolog before the doctype will throw IE6 into quirks rendering mode. (See here.) In fact, any space before the doctype will throw IE6 into quirks mode. This is not the case for IE7 and above. You can use document.compatMode (example) to have the browser tell you what mode it is using to do the rendering.

The IE blog entry on MSDN is referring to changes made to IE7 that allow IE7 to stay in standards mode when using the appropriate doctype even if it is preceded by an XML prolog.

I would generally recommend omitting the prolog and keeping the browser in standards mode; I think this will make your life easier moving forward.

show/hide this revision's text 1

Adding an XML prolog before the doctype will throw IE6 into quirks rendering mode. (See here.) In fact, any space before the doctype will throw IE6 into quirks mode. This is not the case for IE7 and above.

I would generally recommend omitting the prolog and keeping the browser in standards mode.