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

Categories

0 votes
329 views
in Technique[技术] by (71.8m points)

html - Rendering issues with IE7 in quirks mode

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...