CSS各浏览器HACK

/*firefox*/
@-moz-document url-prefix(){.mainNews div.l ul{padding-bottom:12px}}

/*ie6*/
{_padding:2px;}

/*ie7*/
{*padding:4px;}

/*ie10*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10-specific styles go here */
}
/*参考连接:http://www.css88.com/archives/5273*/

.a{ /* 1. */
/* color:#09F\0; 以前是IE8/9, 现在10也支持 */
color:#09F\0/; /* 以前是IE8 only, 现在IE9/10也支持. 如要排除IE9需要使用下面的rule重设IE9样式 */
}
@media all and (min-width:0) { /* 2. */
.a{color:red\9; }/* IE9 only, 现在IE10也支持 */
/* Ps:老外的方法都是\0,根本没考虑Opera */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { /* 3. */
.a { color: green; } /* IE10+ */
}

posted @ 2013-12-25 23:05  Younger  阅读(205)  评论(0编辑  收藏  举报