css hack 总结 包括ie6-11,chrome,opera,firefox_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:58:22
원래의
894명이 탐색했습니다.

 1 <!DOCTYPE html>  2 <html>  3 <head>  4 <title>Css Hack ie各版本 opera chrome safari firefox</title>  5 <meta charset=”utf-8″ /> 6 <style>  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 </style> 26 </head> 27 <body> 28 <div id='test'>css hack 测试</div> 29 </body> 30 </html>
로그인 후 복사

其中 由于:root 权重较大 所以 ie10 和 ie11 都加了!important。

 

来自 我的博客

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!