非常全的css hack
2013-06-20 00:00:00 by 【6yang】,
748
visits,
收藏 |
返回
现在浏览器形式各样,让前端刀手措手不及,下面我给大家总结的一款非常使用的Hack, 希望F2D们用到的时候可以信手拈来。
<!DOCTYPE html>
<html>
<head>
<title>Css Hack</title>
<style>
#test
{
width:300px;
height:300px;
background-color:blue; /*firefox*/
background-color:red9; /*all ie*/
background-color:yellow ; /*ie8*/
+background-color:pink; /*ie7*/
_background-color:orange; /*ie6*/
}
:root #test { background-color:purple9; } /*ie9*/
@media all and (min-width:0px){ #test {background-color:black ;} } /*opera*/
@media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} } /*chrome and safari*/
</style>
</head>
<body>
<div id="test">test</div>
</body>
</html>
share