What exactly is “IE5 quirks” in IE 10 Developer Tools? [duplicate]

[亡魂溺海] 提交于 2019-12-07 05:52:19

问题


Possible Duplicate:
Does the windows 8 internet explorer 10 still have quirksmode?

I'm working on a website which we're trying to get to work in IE10. In this site we have an iframe which is breaking when we're using IE5 quirksmode which we really need for the main site to work, for some reason we can't just use the Quirks document mode in IE10, because then the main site wont work.

So what the heck is IE5 quirks and is it the same as quirks in IE9|8?

inb4 OP is non-standars compliant: this is a legacy product and we're working hard on a new edition of it.


回答1:


The answer can be found here: Does the windows 8 internet explorer 10 still have quirksmode?

IE10 has two quirk modes. The new one is called "Quirks mode" and behaves exactly the same as quirks mode in Firefox and Webkit - you can turn it on by removing <!doctype>. All HTML5 and other new features work in this mode. Only some minor spec violations are present (not requiring units in CSS dimensions and so on).

The legacy quirks mode is called "IE5 Quirks mode" and behaves as quirks mode in IE9. You can turn it on with X-UA-Compatible: IE=5 HTTP header or tag. In this mode, IE renders the page as old IE5.

If this helped you go and update duri's answer and not this one!



来源:https://stackoverflow.com/questions/14354527/what-exactly-is-ie5-quirks-in-ie-10-developer-tools

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!