开发者

Rendering issues with IE7 in quirks mode

开发者_StackOverflow

I have developed a website which works fine in all browsers except IE7 as reported by some users. In IE7 it is completely broken up.

Unfortunately I do not have access to any machine with IE7. Hence I installed developer toolbar on my IE8 and tried to view the site with compatibility mode set to IE7| IE7 Standards.

The site was working fine. When I set it to IE7 | IE7 Quirks mode however I could see that the site was broken.

What is the simplest way to fix this issue? Is there any way I can force the browser to render my website in IE7 standards mode always ?


Quirks mode in IE is usually triggered by a lack of (or incorrect) doctype.

Check that your doctype is valid. This should prevent it from going into quirks mode.

If you're not sure what to do, add the following to the top of your html code:

<!DOCTYPE html>

Hope that helps.


I know of this meta tag:

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

But I'm not sure if it helps in your case. Maybe it's best to see what's causing the problem and solve that in a browser-indepent way.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜