Does IE8 support web pages like IE7 in compatibility mode?

debugging in compatibility mode in IE8 just like debugging in IE7?

Do the same pages display the same?

So I don’t need IE7 for testing if I have IE8?

thanks

+4
source share
1 answer

It's pretty close - but not the same, there are a few subtle differences.

It all depends on your code ... for example. if your pages are not of type doctype, for example. if you work in quirks mode or use quirks mode, the interpretation of height="100%" in the iframe is different from the actual IE7 versus IE7mode in IE8. The first is "100% of my container", later - "100% of the default height", which is about 220 pixels.

+2
source

Source: https://habr.com/ru/post/1309192/


All Articles