您的位置:首页 > Web前端 > CSS

CSS各浏览器HACK

2013-12-25 23:05 162 查看
/*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+ */
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: