友人、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; }
受け入れられた回答もIE10を対象としていることに注意してください。そのため、より完全なリストを得るには:
* html .ie6 {property:value;}
または
.ie6 { _property:value;}
*+html .ie7 {property:value;}
または
*:first-child+html .ie7 {property:value;}
@media screen\9 {
.ie67 {property:value;}
}
または
.ie67 { *property:value;}
または
.ie67 { #property:value;}
@media \0screen\,screen\9 {
.ie678 {property:value;}
}
html>/**/body .ie8 {property:value;}
または
@media \0screen {
.ie8 {property:value;}
}
.ie8 { property /*\**/: value\9 }
@media screen\0 {
.ie8910 {property:value;}
}
@media screen and (min-width:0) and (min-resolution: .001dpcm) {
// IE9 CSS
.ie9{property:value;}
}
@media screen and (min-width:0) and (min-resolution: +72dpi) {
// IE9+ CSS
.ie9up{property:value;}
}
@media screen and (min-width:0) {
.ie910{property:value;}
}
_:-ms-lang(x), .ie10 { property:value\9; }
_:-ms-lang(x), .ie10up { property:value; }
または
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up{property:value;}
}
_:-ms-fullscreen, :root .ie11up { property:value; }
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;
}
可能であれば、ブラウザのターゲティングを避けてください。特定した問題を特定して修正します。サポート プログレッシブエンハンスメント および グレースフルデグラデーション 。このことを念頭に置いて、これは実稼働環境で常に取得できるとは限らない「理想的な世界」シナリオです。したがって、上記はいくつかの優れたオプションを提供するのに役立つはずです。
CSSスタイルの前に追加できます
:root
次のようにIE9固有にするには:
:root #element { color:pink \0/IE9; } /* IE9 */
使用IE条件付きコメント:
<!--[if ie 9]>
your stuff here
<![endif]-->
\ 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
IE6用の特定のコードを書きたいが、代わりにIE9を言う場合と同じことができると思います:)
<!--[if IE 9]>
Special instructions for IE 9 here
<![endif]-->
条件付きCSSを使用します(HTMLの<head>
の上にコードを配置すると、IE9が追加のCSSファイルを読み取ります)
<!--[if (gte IE 9)|!(IE)]><!-->
place the link to the CSS file here
<![endif]-->
これは、アプローチがクラスのハックではなく新しいCSSファイルを使用することを意味し、CSSが有効であることを保証します。
私はいくつかのケースで負の値を使用していることを発見しました(コンパイラを使用してLESSファイルをコンパイルする場合):
margin-right: -15px\9; /* This fails */
margin-right: ~"-18px\9"; /* This passes */