好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

csshack总结包括ie6-11,chrome,opera,firefox_html/css_WE

 1    2    3    4  Css Hack ie各版本 opera chrome safari firefox   5   6    7 #test  8 {  9 width:300px; 10 height:300px;11 12 background-color:blue; /*firefox*/13 background-color:red\9; /*all ie*/14 background-color:yellow\0; /*ie8*/15 +background-color:pink; /*ie7*/16 _background-color:orange; /*ie6*/17 } 18 :root #test { background-color:purple\9; } /*ie9*/19 @media all and (min-width:0px){ #test {background-color:black\0;} } /*opera*/20 @media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} } /*chrome and safari*/21 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 22     #test { background-color:#00ff00 !important;   }  /* ie10 */23     *::-ms-backdrop, #test {  background-color:#00ffff !important; } /* ie11 */24 }25   26   27   28 

css hack 测试

查看更多关于csshack总结包括ie6-11,chrome,opera,firefox_html/css_WE的详细内容...

  阅读:32次