私はIEのみのCSSを対象とする簡単な方法を使用しています。IE条件付きCSSがFF&Chromeに入っています
<!--[if !IE]><!-->
<body>
<!--<![endif]-->
<!--[if IE]>
<body class="ie">
<![endif]-->
<div class="Out">My test content
</div>
外部CSS
.Out{
width:300px;/*Not for IE*/
}
ie. Out{
width:300px; /*only for IE*/
}
しかし、FFで&クロム開発ツール私は体が間違っているclass="ie"
を得る見てい。 class="ie"
は、IEブラウザ専用です。
https://css-tricks.com/snippets/html/add-body-class-just-for-ie/
https://css-tricks.com/how-to-create-an-ie-only-stylesheet/
Detecting IE11 using CSS Capability/Feature Detectionenter link description here
http://www.positioniseverything.net/articles/cc-plus.html .....などのリストGOE:
は私が
リファレンスを参照している数の記事がありますs on
私は記事の番号を参照しましたが、助けにはなりません。私はいくつかのものを逃していると思います。