|
IE6
|
|
IE7
|
|
IE8
|
|
IE9
|
|
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html> <!--<![endif]-->
.testbox { background: #ffffff;}
.ie6 .testbox { background: #aaff44;} /* 黄緑 */
.ie7 .testbox { background: #88ffff;} /* 水色 */
.ie8 .testbox { background: #ccaaff;} /* 紫 */
.ie9 .testbox { background: pink;} /* ピンク */
.testbox2 {
background: #ffffff; /* すべてのブラウザ */
background: #ccaaff\9; /* IE8 以下 */
*background: #88ffff; /* IE7 以下 */
_background: #aaff44; /* IE6 */
}
.testbox2:not(:target) {
background: pink\9; /* IE9 */
}