web-dev-qa-db-ja.com

IE9専用の特定のCSSルールを定義する方法は?

友人、IE9の特定のCSSルールを定義するのを手伝ってください。このような例

/* IE 6 fix */
* html .twit-post .delete_note a { background-position-y: 2px; }
* html .twit-post .delete_note a:hover { background-position-y: -14px; }
26
user632347

受け入れられた回答もIE10を対象としていることに注意してください。そのため、より完全なリストを得るには:

IE 6

* html .ie6 {property:value;}

または

.ie6 { _property:value;}

IE 7

*+html .ie7 {property:value;}

または

*:first-child+html .ie7 {property:value;}

IE 6および7

@media screen\9 {
    .ie67 {property:value;}
}

または

.ie67 { *property:value;}

または

.ie67 { #property:value;}

IE 6、7、および8

@media \0screen\,screen\9 {
    .ie678 {property:value;}
}

IE 8

html>/**/body .ie8 {property:value;}

または

@media \0screen {
    .ie8 {property:value;}
}

IE 8標準モードのみ

.ie8 { property /*\**/: value\9 }

IE 8,9および10

@media screen\0 {
    .ie8910 {property:value;}
}

IE 9のみ

@media screen and (min-width:0) and (min-resolution: .001dpcm) { 
 // IE9 CSS
 .ie9{property:value;}
}

IE 9以降

@media screen and (min-width:0) and (min-resolution: +72dpi) {
  // IE9+ CSS
  .ie9up{property:value;}
}

IE 9および10

@media screen and (min-width:0) {
    .ie910{property:value;}
}

IE 10のみ

_:-ms-lang(x), .ie10 { property:value\9; }

IE 10以降

_:-ms-lang(x), .ie10up { property:value; }

または

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   .ie10up{property:value;}
}

IE 11(以降)

_:-ms-fullscreen, :root .ie11up { property:value; }

Javascriptの代替

Modernizr

Modernizrは、ページの読み込み時に迅速に実行され、機能を検出します。次に、結果を含むJavaScriptオブジェクトを作成し、html要素にクラスを追加します

ユーザーエージェントの選択

Javascript:

var b = document.documentElement;
        b.setAttribute('data-useragent',  navigator.userAgent);
        b.setAttribute('data-platform', navigator.platform );
        b.className += ((!!('ontouchstart' in window) || !!('onmsgesturechange' in window))?' touch':'');

以下をhtml要素に追加します(例):

data-useragent='Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)'
data-platform='Win32'

非常にターゲットを絞ったCSSセレクターの許可、例:

html[data-useragent*='Chrome/13.0'] .nav{
    background:url(img/radial_grad.png) center bottom no-repeat;
}

脚注

可能であれば、ブラウザのターゲティングを避けてください。特定した問題を特定して修正します。サポート プログレッシブエンハンスメント および グレースフルデグラデーション 。このことを念頭に置いて、これは実稼働環境で常に取得できるとは限らない「理想的な世界」シナリオです。したがって、上記はいくつかの優れたオプションを提供するのに役立つはずです。


帰属/エッセンシャルリーディング

31
SW4

CSSスタイルの前に追加できます

:root

次のようにIE9固有にするには:

:root #element { color:pink \0/IE9; }  /* IE9 */
24
simon

使用IE条件付きコメント

<!--[if ie 9]>
    your stuff here
<![endif]-->
19
Madara Uchiha

\ 9は、Internet Explorer固有の「CSSハック」です。

これは、CSSの特定の行が\ 9で終わることを意味します。

あなたの例では、CSSがこのように見えたら...

html .twit-post .delete_note a 
{ 
background-position-y: 2px\9; 

}
html .twit-post .delete_note a:hover 
{ 
 background-position-y: -14px\9;
 }

結果はbackground-position-y:-14px; in IE 9

8
Harsh

IE6用の特定のコードを書きたいが、代わりにIE9を言う場合と同じことができると思います:)

<!--[if IE 9]>
Special instructions for IE 9 here
<![endif]-->
2
Ahmad Hajjar

条件付きCSSを使用します(HTMLの<head>の上にコードを配置すると、IE9が追加のCSSファイルを読み取ります)

<!--[if (gte IE 9)|!(IE)]><!-->
place the link to the CSS file here
<![endif]-->

これは、アプローチがクラスのハックではなく新しいCSSファイルを使用することを意味し、CSSが有効であることを保証します。

1
jackJoe

私はいくつかのケースで負の値を使用していることを発見しました(コンパイラを使用してLESSファイルをコンパイルする場合):

margin-right: -15px\9; /* This fails */
margin-right: ~"-18px\9"; /* This passes */
0
White Rabbit