码迷,mamicode.com
首页 > Web开发 > 详细

史上最全的css hack

时间:2014-07-26 14:54:40      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   html   div   ar   htm   

 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>



 

史上最全的css hack,布布扣,bubuko.com

史上最全的css hack

标签:style   blog   color   io   html   div   ar   htm   

原文地址:http://www.cnblogs.com/Tourmaline/p/3870049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!