user736893
user736893

Reputation:

IE7, Standards mode vs "IE7 Standards" mode

I have a fairly simple HTML5 website going with some jquery/javascript and CSS. It looks fine in Chrome, FF and IE8, 9 and 10. However, when I switch the browser mode to IE7 it doesn't look right. If I change the document mode to "standards" it looks correct again, still in IE7 mode. Please see the screenshot for clarification. Can someone explain the difference between "Standards" mode and "IE7 Standards" mode? And how can I change the "page default"?

IE10 Debugger

Upvotes: 1

Views: 1172

Answers (1)

adi rohan
adi rohan

Reputation: 806

You need to Add
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

in your <head> tag.

This will force IE to use latest rendering engine even in chrome frame .

Upvotes: 2

Related Questions