Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>You can use the document compatibility mode to do this, which is what you were trying.. However, thing to note is: It must appear in the Web page's header (the HEAD section) before all other elements, except for the title element and other meta elements Hope that was the issue.. Also, The X-UA-compatible header is not case sensitive Refer: <a href="http://msdn.microsoft.com/en-us/library/cc288325%28v=vs.85%29.aspx#SetMode" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc288325%28v=vs.85%29.aspx#SetMode</a></p> </blockquote> <p>Edit: in case something happens to kill the msdn link, here is the content: </p> <blockquote> <p>Specifying Document Compatibility Modes</p> <p>You can use document modes to control the way Internet Explorer interprets and displays your webpage. To specify a specific document mode for your webpage, use the meta element to include an X-UA-Compatible header in your webpage, as shown in the following example.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;!-- Enable IE9 Standards mode --&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=9" &gt; &lt;title&gt;My webpage&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Content goes here.&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>If you view this webpage in Internet Explorer 9, it will be displayed in IE9 mode.</p> <p>The following example specifies EmulateIE7 mode.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;!-- Mimic Internet Explorer 7 --&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" &gt; &lt;title&gt;My webpage&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Content goes here.&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In this example, the X-UA-Compatible header directs Internet Explorer to mimic the behavior of Internet Explorer 7 when determining how to display the webpage. This means that Internet Explorer will use the directive (or lack thereof) to choose the appropriate document type. Because this page does not contain a directive, the example would be displayed in IE5 (Quirks) mode.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload