CSS 瀏覽器安全色hack整理收藏

來源:互聯網
上載者:User

相容範圍:

IE:6.0+,FireFox:2.0+,Opera 10.0+,Sarari 3.0+,Chrome
參考資料:

1, IE條件注釋法,微軟官方推薦的hack方式。

只在IE下生效
<!--[if IE]>
這段文字只在IE瀏覽器上顯示
<![endif]-->

只在IE6下生效
<!--[if IE 6]>
這段文字只在IE6瀏覽器上顯示
<![endif]-->

只在IE6以上版本生效
<!--[if gt IE 6]>
這段文字只在IE6以上版本IE瀏覽器上顯示
<![endif]-->

只在IE7上不生效
<!--[if ! IE 7]>
這段文字在非IE7瀏覽器上顯示
<![endif]-->

非IE瀏覽器生效
<!--[if !IE]><!-->
這段文字只在非IE瀏覽器上顯示
<!--<![endif]-->


2, 選擇符首碼法,即在CSS選擇符前加一些只有特定瀏覽器才能識別的首碼。

*html 首碼只對IE6生效
*+html 首碼只對IE7生效

樣本

.test{ color:#FFF;}
*html .caibaojian_com{ color:#000;}  /* only for ie6 */
*+html .caibaojian_com{ color:#CCC;} /* only for ie7 */


3, 屬性首碼法,即在樣式屬性名稱前加一些只有特定瀏覽器才能識別的首碼。

"_" 只對IE6生效
"+" 只對IE7生效
"*" 只對IE6和IE7生效
例如:

.caibaojian_com{ color:#FFF; *color:#CCC; _color:#000;}


4, 還有一種hack方法是在屬性值後加上一些只有特定瀏覽器才能識別的首碼。

"9"  IE6/IE7/IE8/IE9/IE10都生效
""  IE8/IE9/IE10都生效
"9" 只對IE9/IE10生效
:root .test { color:#963; } 只對IE9/IE10生效
.test{color//:#963;} //針對非IE的瀏覽器
!important 對IE6無效(一般情況下,特殊情況有效,比如兩個css複寫,後一個的如果加!important則對IE6有效)

例如:

.caibaojian_com{ color:#FFF; color:#CCC9; color:#3FC; color:#eee9}
:root .caibaojian_com{color:#eee}
.test{color//:#333;}綜合一下就是下面這段代碼了

.all-IE { property:value9; }
:root .IE-9 { property:value/; }
.gte-IE-8 { property:value; }
.lte-IE-7 {  *property:value; }
.IE-7 {  +property:value; }
.IE-6 { _property:value; }
.not-IE {  property//:value;}
@-moz-document url-prefix () { .firefox { property:value; } }
@media all and (-webkit-min-device-pixel-ratio:0) { .webkit { property:value; } }
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { .opera { property:value; } }
@media screen and (max-device-width: 480px) { .iphone-or-mobile-s-webkit { property:value; } }

5.button重設css樣式相容ie6,ie7

button在IE6、IE7下的相容性,需要儲值css為overflow:visible

6.讓IE6支援max-width,min-width

.sector{max-width:500px; _width:expression((documentElement.clientWidth>500)?"500px":"auto");

min-width:300px; _width:expression((documentElement.clientWidth<300)?"300px":"auto");}

 

 


(以上 .bb 可更換為其它樣式名)
注意點:
網上很多資料中常常把!important也作為一個hack手段,其實這是一個誤區。!important常常被我們用來更改樣式,而不是相容hack。造成這個誤區的原因是IE6在某些情況下不主動識別!important,以至於常常被人誤用做識別IE6的hack。可是,大家注意一下,IE6隻是在某些情況下不識別(ie6下,同一個大括弧裡對同一個樣式屬性定義,其中一個加important 則important標記是被忽略的,例:{background:red!important; background:green;} ie6下解釋為背景色green,其它瀏覽器解釋為背景色red;如果這同一個樣式在不同大括弧裡定義,其中一個加important 則important發揮正常作用,例:div{background:red!important} div{background:green},這時所有瀏覽器統一解釋為背景色red。)

--------------------------------------------------------------------------------

執行個體講解:
Hack應用情境(一)
適用範圍:IE:6.0,IE7.0,IE8.0之間的相容
執行個體說明:
此例中我們使用了漸進識別的方式,從總體中逐漸排除局部。首先,巧妙的使用“9”這一標記,將IE遊覽器從所有情況中分離出來。接著,再次使用“+”將IE8和IE7、IE6分離開來,此時,我們的IE8已經獨立識別。
執行個體代碼:
.bb{
height:32px;
background-color:#f1ee18;/*所有識別*/
.background-color:#00deff9; /*IE6、7、8識別*/
+background-color:#a200ff;/*IE6、7識別*/
_background-color:#1e0bd1;/*IE6識別*/
}

/*一個用於展示的class為bb的div標籤*/
< div class ="bb"></ div >


--------------------------------------------------------------------------------

Hack應用情境(二)
適用範圍:IE:6.0,IE7.0,IE8.0,Firefox之間的相容
執行個體說明:
大家很容易的可以看出這是情境(一)的加強版,適用於更廣泛的環境。其實情境(一)中也已經做到了把Firefox與IE遊覽器區分開來了,現在我們要做的是把Firefox從其它遊覽器中再次識別出來。大家仔細看下代碼,大家會發現其實遊覽器識別是很簡單的。Firefox如何識別?對了,IE中對偽類支援不廣泛,所以偽類是個不錯的途徑。(.yourClass,x:-moz-any-link, x:default)注意,這個區分偽類往往IE7也能識別,所以最好還需要把IE7單獨識別出來,且此方法對ff3.6 已無效,firefox的區分可以使用@-moz-document url-prefix(){}
執行個體代碼:
.bb{
height:32px;
background-color:#f1ee18;/*所有識別*/
background-color:#00deff9; /*IE6、7、8識別*/
+background-color:#a200ff;/*IE6、7識別*/
_background-color:#1e0bd1;/*IE6識別*/
}
.bb, x:-moz-any-link, x:default{background-color:#00ff00;}/*IE7 firefox3.5及以下 識別 */
@-moz-document url-prefix(){.bb{background-color:#00ff00;}}/* 僅firefox 識別 */
* +html .bb{background-color:#a200ff;}/* 僅IE7 識別 */


/*一個用於展示的class為bb的div標籤*/
< div class ="bb"></ div >


--------------------------------------------------------------------------------

Hack應用情境(三)
適用範圍:IE:6.0,IE7.0,IE8.0,Firefox,Safari(Chrome)之間的相容
執行個體說明:
我們現在將再次對我們的CSS進行加強了,使其能識別Safari(Chrome)遊覽器。這是基於它們的核心webkit來識別的,用法為@media screen and (-webkit-min-device-pixel-ratio:0)
執行個體代碼:
.bb{
height:32px;
background-color:#f1ee18;/*所有識別*/
background-color:#00deff9; /*IE6、7、8識別*/
+background-color:#a200ff;/*IE6、7識別*/
_background-color:#1e0bd1;/*IE6識別*/
}
@media screen and (-webkit-min-device-pixel-ratio:0){.bb{background-color:#f1ee18}}{} /*safari(Chrome) 有效 */
.bb, x:-moz-any-link, x:default{background-color:#00ff00;}/*IE7 firefox3.5及以下 識別 */
@-moz-document url-prefix(){.bb{background-color:#00ff00;}}/*僅firefox 識別*/
* +html .bb{background-color:#a200ff;}/* 僅IE7 識別 */


/*一個用於展示的class為bb的div標籤*/
< div class ="bb"></ div >


--------------------------------------------------------------------------------

Hack應用情境(四)
適用範圍:IE:6.0+,FireFox:2.0+,Opera 10.0+,Sarari 3.0+,Chrome全相容

執行個體說明:
執行個體的具體代碼在下面執行個體代碼中已經列出,具體效果如此頁面的頂端部分效果,您可以通過不同遊覽器檢測該效果。這次我們基本把所有的主流遊覽器都相容了,大家來看下代碼。Opera的識別有一部分歸功於“”標記,這個標記只被IE8和Opera識別,特殊的標記往往造就的是我們更廣泛的hack手段。下例的代碼比較完整,大家可以選擇參考。
執行個體代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312">
<head>
<meta http-equiv=Content-Type content="text/html; charset=gb2312"/>
<style type="text/css">
/***************************************** 各遊覽器相容CSS **********************************************/
.bb{height:32px;background-color:#f1ee18;/*所有識別*/ background-color:#00deff9; /*IE6、7、8識別*/ +background-color:#a200ff;/*IE6、7識別*/ _background-color:#1e0bd1/*IE6識別*/}

@media screen and (-webkit-min-device-pixel-ratio:0){.bb{background-color:#f1ee18}}{} /* Safari(Chrome) 有效 */
@media all and (min-width: 0px){ .bb{background-color:#f1ee18;/*opera and Safari(Chrome) and firefox*/ background-color:#4cac70;}/* 僅 Opera 有效 */ }{}

.bb, x:-moz-any-link, x:default{background-color:#4eff00;/*IE7、Firefox3.5及以下 識別 */}
@-moz-document url-prefix(){.bb{background-color:#4eff00;/*僅 Firefox 識別 */}}
* +html .bb{background-color:#a200ff;}/* 僅IE7 識別 */

/* 一般情況下 我們區分IE7 只用 +background-color 配合 _background-color 就行了 如果必須寫 .bb, x:-moz-any-link, x:default 這樣的代碼區分 Firefox3.5及以下 則謹記此寫法對IE7也有效,故在其中要再重寫一次 +background-color 或者使用 * +html .bb{background-color:blue;} 方法僅對 IE7 有效。可使用 @-moz-document url-prefix(){} 方法獨立區分所有 firefox */

.browsers td{width:8%;text-align:center;padding:8px;}}
.browsercolor{color:#333;font-size:18px;font-weight:bold;}
.ie6{background-color:#1e0bd1}
.ie7{background-color:#a200ff}
.ie8{background-color:#00deff}
.firefox{background-color:#4eff00}
.opera{background-color:#4cac70}
.other{background-color:#f1ee18;}

#tipTable td,#tipTable th{border:1px solid black;width:56px;height:16px;text-align:center;}
#wordTable td{margin-left:8px;}
#firefoxTip{display:none;}
#firefoxTip, x:-moz-any-link, x:default{display:block;/*IE7 firefox3.5及以下 識別 */+display:none/*再區分一次IE7*/}
@-moz-document url-prefix(){#firefoxTip{display:block;/*僅 firefox 識別 */}}
#ChromeTip{display:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){#ChromeTip{display:block;}}{} /* safari(Chrome) 有效 */
@media all and (min-width: 0px){#ChromeTip{display:none;} /* 僅 Opera 有效 */ }{}
</style>
</head>
<body>
<table class="browsers" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>IE6</td>
<td></td>
<td>IE7</td>
<td></td>
<td>IE8</td>
<td></td>
<td>Firefox</td>
<td></td>
<td>Opera</td>
<td></td>
<td>Safari(Chrome)</td>
<td></td>
</tr>
<tr class="browsercolor">
<td class="ie6">IE6</td>
<td></td>
<td class="ie7">IE7</td>
<td></td>
<td class="ie8">IE8</td>
<td></td>
<td class="firefox">Firefox</td>
<td></td>
<td class="opera">Opera</td>
<td></td>
<td class="other">Safari(Chrome)</td>
<td></td>
</tr>
</table>
<div class="bb">
<span style="display:none;display:block;display:none9;">Opera的辨別色是深綠色,Opera遊覽器很時髦麼。</span >
<span id="firefoxTip">Firefox的辨別色是淺綠色,Firefox是很強大的遊覽器。</span >
<span id="ChromeTip">Safari和Chrome的辨別色是金黃色,Safari和Chrome使用的都是Webkit核心</span >
<!--[if IE 8]>IE8的辨別色是藍色,新版IE8的功能可是不少呢。<![endif]-->
<!--[if IE 7]>IE7的辨別色是紫色,IE7還可以湊合著用!<![endif]-->
<!--[if IE 6]>IE6的辨別色是紅色,不過,IE6可是有點落後了!<![endif]-->
</div>
</body>
</html>

標記 IE6 IE7 IE8 FF Opera Sarari
[*+><] X X X X
_ X X X X X
9 X X X
X X X X
@media screen and (-webkit-min-device-pixel-ratio:0){.bb {}} X X X X X
.bb , x:-moz-any-link, x:default X X √(ff3.5及以下) X X
@-moz-document url-prefix(){.bb{}} X X X X X
@media all and (min-width: 0px){.bb {}} X X X
* +html .bb {} X X X X X
遊覽器核心 Trident Trident Trident Gecko Presto WebKit

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.