Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
334 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...