문제

I just received a new computer at work, with IE8 set to render all sites as IE7. This was a shock to me. Does anyone know if ALL installations of IE8 default to IE7 rendering? And if so, is there anything a web developer can do to force IE8 rendering?

도움이 되었습니까?

해결책

As I know by default IE8 renders only intranet sites as IE7. To disable this go to Tools -> Compatibility View Settings and uncheck "Display intranet sites in Compatibility view". Also there is a checkbox "Display all sites in Compatibility view" in this dialog - it looks like it's checked for you. It's not standart setting, maybe it is your domain policy.

Anyway, if you need to force IE8 to render pages as IE8 use X-UA-Compatible http header. You can add meta tag in a head section of your page, like this:

<meta http-equiv="X-UA-Compatible" content="IE=8" /> 

MSDN

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top