Reputation:
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"?
Upvotes: 1
Views: 1172
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