CSS 兼容写法(hack)
2017-08-09 本文已影响0人
前端大鹏
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;}
}