サイトを開発していますが、付属のコンテンツが IE で正しく表示されないことがわかったので、他の IE 互換コンテンツに置き換えたいと考えています。
これは私が使用しているものです:
<!--[if !IE]> -->
<div id="container">
This is not IE, you are seeing the normal content
</div>
<!-- <![endif]-->
<!--[if IE]>
<div id="container">
This is IE, you are seeing IE-compatible content
</div>
<![endif]-->
問題は、IEのバージョンが10未満、または互換モードがオンのバージョン10でも
This is IE, you are seeing IE-compatible content
しかし、互換モードがオフのIE 10ではわかります
This is not IE, you are seeing the normal content
なんで?
やってみたい方へ:JSFiddle