Reputation: 42544
When IE8 is in IE7-compatibility mode it behabes like IE7 in quirks mode, which means there is no support for the new CSS features that IE7 supports (e.g. object selectors --child selectors, adjacent selectors, etc..).
How can I make IE8 to emulate IE7's standard mode rather than quirks mode??
Note:
The purpose of this is not to find out how will my page look under IE7. I have VMs with all major browser versions, so that's not a problem.
What I want is to make IE8 to interpret my pages in IE7-compatibility mode since they work well in the actual IE7's standard mode but they dont work well on IE8's standard mode nor IE8's quirks mode.
Upvotes: 0
Views: 1887
Reputation: 11
Use the IE8 Debug Toolbar to change document mode.
This should give you what you're looking for.
Upvotes: 1
Reputation: 20722
95% sure you can't. However, you can do what Sarfraz suggested, or perhaps download: http://www.my-debugbar.com/wiki/IETester/HomePage which will run pages with the actual engine (IE5, 5.5, 6, 7 ... ) to test your site.
Upvotes: 0