現在的瀏覽器IE6-IE10、Firefox、Chrome、Opera、Safari。 。 。數量眾多,可謂百家爭鳴,對用戶來說有了很多的可選擇型,不過這可就苦了Web前端開發人員了。
今天把一些常用的CSS Hack整理了一下,包括常用的IE hack以及火狐、Chrome、Opera瀏覽器的Hack,並把這些CSS Hack綜合的一起,寫了一個小的瀏覽器測試器。
下面就來看一下程式碼吧:
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 -教你如何區分出IE6-IE10、FireFox、Chrome、Opera相關文章請追蹤PHP中文網!