简体   繁体   中英

IE8 Compatibility mode issue

I have created one jsp page that page is working fine across the all browser.when i rendered that page in IE8 browser it's working fine.But problem is when i select

Browser Mode-IE8 Compatibility View than corresponding

Document Mode- IE7 Standards will be selected automatically.

then my jsp page giving a lot alignment issue.But when i select again

Document Mode- IE8 Standards than my page working fine..

How i can control this thing Is there any way to setting because i can change again again the document mode..i want Document Mode will fix IE8 Standard..

Please provide the solution how i can handle this issue...

Try changing the DOCTYPE to:

<DOCTYPE html>

And then try adding this meta tag into the <head> of your document:

<meta http-equiv="x-ua-compatible" content="IE=Edge"/>

This meta tag should force IE into standards mode, you can find more information about it here .

You should end up with something that looks like:

<DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
        <meta http-equiv="x-ua-compatible" content="IE=Edge"/>
    </head>
    <body>
        <p>Content</p>
    </body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM