현재 브라우저는 IE6-IE10, Firefox, Chrome, Opera, Safari입니다. . . 수백 개의 학파가 경쟁하고 있다고 말할 수 있을 만큼 너무 많고 사용자를 위한 옵션도 많지만 이는 웹 프런트 엔드 개발자에게는 고통스러운 일입니다.
오늘은 일반적으로 사용되는 IE 핵과 Firefox, Chrome 및 Opera 브라우저용 핵을 포함하여 일반적으로 사용되는 CSS 핵을 정리하고 이러한 CSS 핵을 결합하여 작은 브라우저 테스터를 작성했습니다.
코드를 살펴보겠습니다.
html 부분:
<div class="content"> <div class="test"></div> <div class="txt"> <p>IE6下背景颜色:<span class="ie6" style="background-color: #ccc;">#ccc</span></p> <p>IE7下背景颜色:<span class="ie7" style="background-color: #666;">#666</span></p> <p>IE8下背景颜色:<span class="ie8" style="background-color: #06f;">#06f</span></p> <p>IE9下背景颜色:<span class="ie9" style="background-color: #f00;">#f00</span></p> <p>IE10下背景颜色:<span class="ie10" style="background-color: #0ff;">#0ff</span></p> <p>webkit,Safari,Chrome下背景颜色:<span class="webkit-safari-gg" style="background-color: #ff0;">#ff0</span></p> <p>FireFox下背景颜色:<span class="firefox" style="background-color: #f0f;">#f0f</span></p> <p>Opera下背景颜色:<span class="opera" style="background-color: #0f0;">#0f0</span></p> </div> </div>
CSS 부분은 코드 중 Hack 부분만 올려 놓을 예정이며, 레이아웃은 게시되지 않습니다:
.content .test { width: 200px; height: 200px; background: #f60; /*all*/ background: #06f9; /*IE*/ *background: #666; /*IE6,7*/ _background: #ccc; /*IE6*/ } /* webkit and opera */ @media all and (min-width:0){ .content .test { background: #0f0; } } /* webkit */ @media screen and (-webkit-min-device-pixel-ratio:0) { .content .test { background: #ff0; } } /*FireFox*/ @-moz-document url-prefix() { .content .test { background: #f0f; } } /*IE9+*/ @media all and (min-width:0) { .content .test{ background: #f009; } } /*IE10+*/ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .content .test { background: #0ff; } }
더 많은 CSS Hack 백과사전을 보려면 IE6-IE10, FireFox, Chrome, Opera 관련 기사를 구별하는 방법을 가르쳐 주세요. 비용을 지불하세요. PHP 중국어 웹사이트에 주목하세요!