Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the difference if one web page starts with

<!DOCTYPE html> 
<html> 
  <head> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 

and if page starts with

<!DOCTYPE html> 
<html> 
  <head> 
     <!-- without X-UA-Compatible meta -->

If there is no difference, I suppose can just ignore the "X-UA-Compatible" meta header, since I just want it to be rendered in most standard mode in all IE versions.

Thanks

share|improve this question

7 Answers

up vote 140 down vote accepted

The X-UA-Compatible meta tag allows web authors to choose what version of Internet Explorer the page should be rendered as.

Here are your options:

  • "IE=edge"
  • "IE=10"
  • "IE=EmulateIE10"
  • "IE=9"
  • "IE=EmulateIE9
  • "IE=8"
  • "IE=EmulateIE8"
  • "IE=7"
  • "IE=EmulateIE7"
  • "IE=5"

To attempt to understand what each means here are definitions provided by Microsoft:

Internet Explorer supports a number of document compatibility modes that enable different features and can affect the way content is displayed:

  • IE10 mode provides the highest support available for established and emerging industry standards, including the HTML5, CSS3 and others.

  • IE9 mode provides the highest support available for established and emerging industry standards, including the HTML5 (Working Draft), W3C Cascading Style Sheets Level 3 Specification (Working Draft), Scalable Vector Graphics (SVG) 1.0 Specification, and others. [Editor Note: IE 9 does not support CSS3 animations].

  • IE8 mode supports many established standards, including the W3C Cascading Style Sheets Level 2.1 Specification and the W3C Selectors API; it also provides limited support for the W3C Cascading Style Sheets Level 3 Specification (Working Draft) and other emerging standards.

  • IE7 mode renders content as if it were displayed in standards mode by Internet Explorer 7, whether or not the page contains a directive.

  • Emulate IE9 mode tells Internet Explorer to use the directive to determine how to render content. Standards mode directives are displayed in IE9 mode and quirks mode directives are displayed in IE5 mode. Unlike IE9 mode, Emulate IE9 mode respects the directive.

  • Emulate IE8 mode tells Internet Explorer to use the directive to determine how to render content. Standards mode directives are displayed in IE8 mode and quirks mode directives are displayed in IE5 mode. Unlike IE8 mode, Emulate IE8 mode respects the directive.

  • Emulate IE7 mode tells Internet Explorer to use the directive to determine how to render content. Standards mode directives are displayed in Internet Explorer 7 standards mode and quirks mode directives are displayed in IE5 mode. Unlike IE7 mode, Emulate IE7 mode respects the directive. For many web sites, this is the preferred compatibility mode.

  • IE5 mode renders content as if it were displayed in quirks mode by Internet Explorer 7, which is very similar to the way content was displayed in Microsoft Internet Explorer 5.

  • Edge mode tells Internet Explorer to display content in the highest mode available. With Internet Explorer 9, this is equivalent to IE9 mode. If a future release of Internet Explorer supported a higher compatibility mode, pages set to edge mode would appear in the highest mode supported by that version. Those same pages would still appear in IE9 mode when viewed with Internet Explorer 9.

NOTE: As of Internet Explorer 10, quirks mode behaves differently than it did in earlier versions of the browser. In Windows Internet Explorer 9 and earlier versions, quirks mode restricted the webpage to the features supported by Microsoft Internet Explorer 5.5. In Internet Explorer 10, quirks mode conforms to the differences specified in the HTML5 specification.

Personally I choose always have meta http-equiv="X-UA-Compatible" content="IE=edge" As older versions have plenty of bugs and I do not want IE to decide to go into "Compatibility mode" and show my site as IE 7 vs IE 8. I always prefer the latest version of IE.

Chrome=1 Info for IE

There is also chrome=1 that you can use or use together with one of the above options, EX: <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> chrome=1 is for Google's Chrome Frame which is defined as:

Google Chrome Frame is an open source browser plug-in. Users who have the plug-in installed have access to Google Chrome's open web technologies and speedy JavaScript engine when they open pages in the browser.

Google Chrome Frame seamlessly enhances your browsing experience in Internet Explorer. It displays Google Chrome Frame enabled sites using Google Chrome’s rendering technology, giving you access to the latest HTML5 features as well as Google Chrome’s performance and security features without in any way interrupting your usual browser usage.

When Google Chrome Frame is installed, the web just gets better without you having to think about it.

But for that plug-in to work you must use chrome=1 in the X-UA-Compatible meta tag.

More info on Chrome Frame can be found here.

Footnote:

When using the tag <meta http-equiv="X-UA-Compatible" content="IE=Edge"> you will not be able to validate the page successfully. I would say to ignore this but if you must have page validation change the > to /> and it will validate without issue and still work.

For more information on X-UA-Compatible see Microsoft's Website Defining Document Compatibility.

For more information on what IE supports see the website caniuse.com

share|improve this answer
4  
If I don't have "X-UA-Compatible" in headers, what would happen? – Morgan Cheng Jul 21 '11 at 7:12
5  
Basically what happens is when you have the X-UA-Compatible it tells IE how to behave in regards to the value you set (IE=edge etc) if it is not there IE will show the site how it thinks best it should be shown. That could be compatibility mode or that could be the latest version of IE. Whatever Microsoft/IE thinks is best. Make sense? – Lynda Jul 21 '11 at 18:09
This link - blogs.msdn.com/b/askie/archive/2009/03/23/… - might help make some sense of this all. – Lynda Jul 21 '11 at 18:17
1  
+1 100th +1 :-) – naikus Mar 19 at 16:19
1  
@AdrienBe - I completely agree! So far IE 10 has been the best for me but I despise any other version. One time I had a page setup with some effects around 200-300 lines of HTML and about 20 minutes of coding. To get IE to work I had to add another 1,000 lines of code (mostly 3rd party javascript)and 2-3 hours of work! I really hate IE => – Lynda Mar 28 at 2:02
show 14 more comments

in short: use Edge mode

<!DOCTYPE html> 
<html> 
  <head> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge" >
  • No disturbing compatibility icon
    The IE9 Address bar does not show up the Compatibility View button
    and the page does not also show up a jumble of out-of-place menus, images, and text boxes.

  • Features
    This meta tag is required to enable javascript::JSON.parse() on IE8
    (even when <!DOCTYPE html> is present)

  • Correctness
    IE8 and later render nicer valid HTML/CSS/JavaScript

  • Optimized
    IE8 and later will use their standard engine mode
    => Faster page rendering (mode for which IE is designed)

even if Microsoft does not recommend Edge mode

Because Edge mode forces all pages to be opened in standards mode, regardless of the version of Internet Explorer, you might be tempted to use this for all pages viewed with Internet Explorer. Don't do this, as the X-UA-Compatible header is only supported starting with Windows Internet Explorer 8.

Therefore Microsoft recommends instead use <!DOCTYPE html> without X-UA-Compatible meta tag.

If you want all supported versions of Internet Explorer to open your pages in standards mode, use the HTML5 document type declaration.

more details: History

For many years (2000 to 2008), IE market share was more than 80%. And IE v6 was considered as a de facto standard (80% to 97% market share in 2003, 2004, 2005 and 2006 for IE6 only).

Therefore Web developers had to test their website using IE6 and many many sites were IE6 compliant only. That situation was great for Microsoft (MS) as web developers had to use Microsoft products (e.g. IE cannot be acquired without buying Windows). As IE was less and less web standard compliant, as developers were more and more dependent on Microsoft products.

Therefore IE4/IE5/IE6 did not respect the web standards. As this incompatibility stayed an advantage for MS, it did not implement new and interesting features of web standards. And this situation did not change for a while. Nowadays, IE6 is still used (6% in March 2013), some websites (intranet) are still IE6 compliant only!

However Mozilla was developing Firefox respecting as much as possible all the web standards. And more and more web developers wanting to use new features of the web standard instead of trying to workaround IE6 incompatibility bugs. Slowly websites were rendered better using Firefox because of implementation of the well documented standards.

When IE market sharing was decreasing, MS realized staying standard incompatible was no longer a good idea. Therefore MS started to release new IE version (IE8/IE9/IE10) respecting more and more the web standards. But the problem was all the websites designed for IE6. Microsoft had to find a way to be simultaneously compliant with IE6-designed-websites and standard-compliant-websites. (In a more general way, new IE versions have to render sites designed for different IE versions: IE5/IE6/IE7/IE8/...)

But how to detect whether the web site has been designed for IE6 or IE8 or... Therefore MS requested developers to add extra data (meta tag) within the HTML code in order to help IE identifying for which IE version the page has been designed/tested. Else (if developer is nasty) IE will not display well the web site.

browsers have to be compliant with your website because your are a good developer

If you (try to) respect web standard, you can simply always use <meta http-equiv="X-UA-Compatible" content="IE=edge">. To keep compatibility with old browsers, just avoid latest web features: use the subset supported by the oldest browser you want to support. Do not care about the best IE version rendering.

Internet browsers have to be compliant with web standards: If your site is standard compliant and use moderately latest features, therefore browsers have to be compliant with your website. If some visitors use an incompatible browser, they may upgrade ;)

You may also avoid wasting time with IE testing! (MS does not provide IE9 on Windows XP, and do not provide IE on other OS except some old IE on MacOS)

personal IE6 experience

I worked 2010-2012 for a company using IE6 as the official corporate browser (i.e. the single browser allowed). I had to implemented an intranet website for IE6 only. I decided to respect web standard but using the IE6-capable subset (HTML/CSS/. It was hard, but when the company switched to IE8, the website was still well rendered. Firefox and firebug have helped me a lot ;)

please help

You may think my answer is a bit longer. Please suggest me simplification => edit this answer: remove unrelevant information. I prefer short and clear text than text too much detailed. Thanks ;-)

share|improve this answer
'Edge mode is intended for testing purposes only; do not use it in a production environment.' See msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx – Clara Onager Apr 22 at 14:54
Please @ClaraOnager take some time to explain what is wrong in my answer (from your point of view). Even if MS does not recommend use of Edge mode in production environment, there are good reasons to use it in production environment. It is important to technically clarify our best practices. I like to share my knowledge and experiences. I hope you too. We can improve together ;) Cheers – olibre Apr 23 at 9:55

Use this to force IE to hide that annoying browser compatibility button in the address bar:

<meta http-equiv="X-UA-Compatible" content="IE=edge" />
share|improve this answer
'Edge mode is intended for testing purposes only; do not use it in a production environment.' See msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx – Clara Onager Apr 22 at 14:54

The difference is that if you only specify the DOCTYPE, IE’s Compatibility View Settings take precedence. By default these settings force all intranet sites into Compatibility View regardless of DOCTYPE. There’s also a checkbox to use Compatibility View for all websites, regardless of DOCTYPE.

IE Compatibility View Settings dialog

X-UA-Compatible overrides the Compatibility View Settings, so the page will render in standards mode regardless of the browser settings. This forces standards mode for:

  • intranet pages
  • external web pages when the computer administrator has chosen “Display all websites in Compatibility View” as the default—think big companies, governments, universities
  • when you unintentionally end up on the Microsoft Compatibility View List
  • cases where users have manually added your website to the list in Compatibility View Settings

DOCTYPE alone cannot do that; you will end up in one of the Compatibility View modes in these cases regardless of DOCTYPE.

If both the meta tag and the HTTP header are specified, the meta tag takes precedence.

This answer is based on examining the complete rules for deciding document mode in IE8, IE9, and IE10. Note that looking at the DOCTYPE is the very last fallback for deciding the document mode.

share|improve this answer
In intranet scenario, by default IE10 renders in compatibility mode. See stackoverflow.com/questions/13284083/… . This tag is not required by default for internet, but is required (by default) when using myintenralserver/myapp . I wanted to add this comment, because the internet vs. intranet difference was only clear from the text in the screenshot, not in the text of any answers on the page. – yzorg Apr 23 at 13:08
You’re right, I should have been clearer about that. I rewrote the post; let me know if there’s anything else I should address. Thanks! – andrewdotn Apr 23 at 16:32

I think this diagram from Microsoft explains all. In order to tell IE how to render the content, !DOCTYPE has to work with X-UA-Compatible meta tag. !DOCTYPE by itself has no affect on changing IE Document Mode.

http://ie.microsoft.com/testdrive/ieblog/2010/Mar/02_HowIE8DeterminesDocumentMode_3.png

share|improve this answer
1  
Here is an updated version that includes IE9. OMG... ie.microsoft.com/testdrive/ieblog/2010/Jun/… – Spiralis Dec 20 '12 at 12:55
1  
And this one includes IE10: msdn.microsoft.com/en-us/library/ff406036%28v=vs.85%29.aspx The different chapters have their own separate flowcharts... – Spiralis Dec 20 '12 at 13:02

Just for completeness, you don't actually have to add it to your HTML (which is unknown http-equiv in HTML5)

Do this and never look back (first example for apache, second for nginx)

Header set X-UA-Compatible "IE=Edge,chrome=1"

add_header X-UA-Compatible "IE=Edge,chrome=1";
share|improve this answer

if you use your website in the same network as the server IE likes to switch to compability mode despite DOCTYPE.
Adding meta http-equiv="X-UA-Compatible" content="IE=Edge" disables this unwanted behaviour.

share|improve this answer
Another word for 'same network as the server' is intranet ... so basically IE10 is broken by default for all intranet sites. See screenshot in @AndrewNeitsch answer. – yzorg Apr 23 at 13:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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