Mobile app version of vmapp.org
Login or Join
Bryan171

: What EXACTLY does Compatibility View do in IE8? I have an ordered list where the text is displaying on the next line from the number in IE 8 (but not other browsers). If I switch on Compatibility

@Bryan171

Posted in: #InternetExplorer

I have an ordered list where the text is displaying on the next line from the number in IE 8 (but not other browsers). If I switch on Compatibility View it looks correct. While I think I'll be able to debug this particular issue and fix it, does anyone know of a fairly complete description of what the Compatibility View does, so that next time I can maybe speed up resolution?

TIA

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Bryan171

2 Comments

Sorted by latest first Latest Oldest Best

 

@Marchetta884

Compatibility View in IE8 basically renders the page as it would appear in IE7. IE8 is far more standards compliant than IE7, but pages designed for IE7 may not appear correctly using IE8 standards mode, thus compatibility mode was introduced to make the page fall-back to the IE7 way of rendering.

If you really want the detail of what is going on then read Just The Facts: Recap of Compatibility View from the IE MSDN blog.

Incidentally, if you hit F12 whilst using IE8 you will see the developer toolbar. At the top there are two options to change the document mode and the browser mode which will let you explore how a page appears using the compatibility view options.

10% popularity Vote Up Vote Down


 

@Yeniel560

Compatibility View renders the page as if it was Internet Explorer 7 (including Javascript). There are a few differences between IE8 with CV and pure IE7 but essentially it is the same.

You can also force IE8 to use CV with this meta tag:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />


If you are having problems, I'd suggest first checking you have a legitimate doctype in your HTML (the simplest one is <!DOCTYPE html> which forces standards mode). That will solve 90% of your problems, especially with IE6.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme