史上最全的css hack(ie6-9,firefox,chrome,opera,safari)
在这个浏览器百花争鸣的时代,作为前端开发的我们为了我们漂亮的设计能适应各个浏览器可为煞费苦心,主要体现在javascript和css上面。javascript我这次就不谈了,先说说css。
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>
上面这段代码大家可以直接copy出来,保存成html在各浏览器试试。下面我来分析下:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。