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 mach
Solution 1:
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.
Solution 2:
I know of this meta tag:
<metahttp-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.
Post a Comment for "Rendering Issues With Ie7 In Quirks Mode"