IE9 standard view no load CSS

前端 未结 6 1803
不思量自难忘°
不思量自难忘° 2020-12-07 02:19

I have this problem and maybe I\'m not the only..

If I test my website on FF, Chrome, Safari, IE7, IE8 is perfect.

On IE9 (standard view) It doesn\'t load CS

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 02:50

    We got this kind of problem with a web project, and the trick was to force IE9 to emulate the website/application as it was IE8. To avoid to use IE9's compatibilty mode,put into the code this tag

    after the tag like this :

    < head>
        < meta http-equiv="X-UA-Compatible" content="IE=8">
        ...
    < /head>
    

    be sure to put it as the first tag after , if not it doesn't work

提交回复
热议问题