CSS 兼容写法(hack)


background:blue; /*高版本浏览器 背景变蓝色*/
background:red \9; /*IE8 背景变红色*/
*background:black; /*IE7 背景变黑色*/
_background:orange; /*IE6 背景变橘色*/
 
/*火狐特定hack*/
@-moz-document url-prefix()
{
    body{background:yellow;}
}
 
/*谷歌特定hack*/
@media screen and (-webkit-min-device-pixel-ratio:0) 
{ 
    body{background:#ccc;}
} 
 
/*欧朋特定hack*/
@media all and (-webkit-min-device-pixel-ratio:10000),not and all (-webkit-min-device-pixel-ratio:0) 
{ 
    body{background:green;}
}

你可能感兴趣的:(CSS 兼容写法(hack))