how to force to use Internet Explorer IE9 standards document mode, I built a website and while rendering IE9 uses Quirks mode each time but I want to use standards mode for rendering.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
For explanations, see http://hsivonen.iki.fi/doctype/#ie8 (it looks rather messy, but that’s because IE is messy in its behaviors). |
||||
|
|
put a doctype as the first line of your html document
you can find detailed explanation about internet explorer document compatibility here: Defining Document Compatibility |
|||
|
|
Make sure you use the right doctype. eg.
or just
and also read and understand how compatibility modes and developer toolbar for IE work and set modes for IE: http://blogs.msdn.com/b/ie/archive/2010/10/19/testing-sites-with-browser-mode-vs-doc-mode.aspx |
|||
|
|