Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Emulating the version <code>(IE=EmulateIE8)</code> tells the browser to use the doctype to determine how to render content. Pages without a doctype will be rendered in <a href="http://webdesign.about.com/cs/doctype/a/aaquirksmode.htm" rel="nofollow">quirks mode</a>. Using the html5 doctype, though, switches almost any browsers to <code>content standards mode</code>. <strong>And this is why your code probably fails</strong>!</p> <p>In most cases this line does the job : </p> <pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /&gt; </code></pre> <p>When Internet Explorer comes across this line it will change the engine that is being used to first Chrome Frame, if the plugin is installed, and then to Edge (the highest supported document mode of the browser).</p> <blockquote> <p>Any website running on an Intranet will run in Compatibility Mode and any website on Microsoft’s <a href="http://www.validatethis.co.uk/tag/compatibility-list/" rel="nofollow">Compatibility List</a> will change to it as well.</p> </blockquote> <p><strong>If you sill get issues, you better check if something inside your css may cause this browser-incoherence!</strong></p> <hr> <p><strong>Edit (added some css hints)</strong></p> <p>I'm just gonna list a few things that could go wrong in your css in order to reproduce the unexpected result! I'm not able to test those, so unfortunately I'm not gonna tell you any specific property to change to make it work right out of the box! I'll just write down a few things based on the images you attached to the question!</p> <blockquote> <p>What seems different at least to my eyes, is the font-weight, alignment and eventually the font-size on buttons!</p> </blockquote> <p>Hence you are using ordered-lists and buttons I'm 99% sure this will solve your particular problem straight away (but hey it's internet explorer, nobody ever knows)!</p> <pre><code>ol li { text-align:left } button { font-size: 100%; font-weight: normal } </code></pre> <p>If it does, great... but keep on reading in order to prevent things like that to happen again!</p> <p>If it doesn't :</p> <ul> <li><p>Some browsers when rendering in quirks mode recreate some legacy behavior where tables (but this could apply to other elements as well) do not inherit properly as shown <a href="https://developer.mozilla.org/en/docs/Fixing_Table_Inheritance_in_Quirks_Mode" rel="nofollow">here</a>!</p></li> <li><p>Every css property you are not overriding in your file could potentially have a different default value on each given browser! There is a commom practice to use css reset templates like <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">Eric Meyer’s</a>, <a href="http://html5doctor.com/html-5-reset-stylesheet/" rel="nofollow">HTML5 Doctor</a>, <a href="http://yuilibrary.com/yui/docs/cssreset/" rel="nofollow">YUI</a>, and many others (here's a little <a href="http://sixrevisions.com/css/a-comprehensive-guide-to-css-resets/" rel="nofollow">collection</a>)! All they do is to reset some crucial css properties leaving an equal ground to build upon!</p></li> <li><p>Based on my previous point, stating <code>font-size:small</code> or <code>font-weight: normal</code> could be interpreted in different ways, without any property-reset! <code>small</code> is not a cross-browser font sizing unit!</p></li> </ul> <p>Here's a little hint of what you could try in order to make it work, not all of the proprieties are needed, of course, but i hope you figure them out trying :</p> <pre><code>html, body { font-size: 100%; font: inherit } body { line-height: 1 } ol li { text-align:left } button { font-size: 100%; font-weight: normal; margin: 0; vertical-align: baseline; *vertical-align: middle; line-height: normal; -webkit-appearance: button; cursor: pointer; *overflow: visible; } </code></pre>
    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