首页 > 代码库 > 史上最全的css hack
史上最全的css hack
1 <!DOCTYPE html> 2 3 <html> 4 5 <head> 6 7 <title>Css Hack</title> 8 9 <style> 10 11 #test 12 13 { 14 15 width:300px; 16 17 height:300px; 18 19 20 21 background-color:blue; /*firefox*/22 23 background-color:red\9; /*all ie*/24 25 background-color:yellow\0; /*ie8*/26 27 +background-color:pink; /*ie7*/28 29 _background-color:orange; /*ie6*/30 31 } 32 33 :root #test { background-color:purple\9; } /*ie9*/34 35 @media all and (min-width:0px){ #test {background-color:black\0;} } /*opera*/36 37 @media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} } /*chrome and safari*/38 39 </style> 40 41 </head> 42 43 <body> 44 45 <div id="test">test</div> 46 47 </body> 48 49 </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。