CSS 兼容写法(hack)
作者:
前端大鹏 | 来源:发表于
2017-08-09 17:14 被阅读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;}
}
本文标题:CSS 兼容写法(hack)
本文链接:https://www.haomeiwen.com/subject/pasqrxtx.html
网友评论