Chrome only for IE download

The stylesheet loaded inside the IE conditional tag is loaded in Google Chrome version 11.0.696.65. Rules only IE drop our layout in Chrome.

<!--[if IE]>
    <link href="/Content/site.ie.css" rel="stylesheet" type="text/css" />
<![endif]-->

I checked the character code for the character, and it looks good to me. Is anyone else experiencing this? Is this a Chrome bug or some error function?

Edit: Chrome is fine. We have a custom switch for the one that mistakenly downloaded another copy of the site.ie.css file from the theme folder.

+3
source share
3 answers

Chrome is fine. We have a custom switch for the one that mistakenly downloaded another copy of the site.ie.css file from the theme folder.

0
source

try

<!--[if gte IE 5]>
      <link rel="stylesheet" type="text/css" href="style.css" />
<![endif]-->

Internet explorer ie5, , . , Chrome , .

+1

Im using the same version works for me on here . Would I try reinstalling Chrome?

0
source

All Articles