雖說,如今討論css hanck已通過時了,不過了解下仍是好的。css
各遊覽器經常使用兼容標記一覽表:html
標記 | IE6 | IE7 | IE8 | FF | Opera | Sarari |
---|---|---|---|---|---|---|
[*+><] | √ | √ | X | X | X | X |
_ | √ | X | X | X | X | X |
\9 | √ | √ | √ | X | X | X |
\0 | 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 |
注意點:web
網上不少資料中經常把!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應用情境(一)ide
適用範圍:IE:6.0,IE7.0,IE8.0之間的兼容ui
實例說明:url
實例代碼:spa
.bb{
height:32px;
/*全部識別*/
. /*IE六、七、8識別*/
+/*IE六、7識別*/
_/*IE6識別*/
}
firefox
/*一個用於展現的class爲bb的div標籤*/rest
< div class ="bb"></ div >
Hack應用情境(二)
適用範圍:IE:6.0,IE7.0,IE8.0,Firefox之間的兼容
實例說明:
實例代碼:
.bb{
height:32px;
/*全部識別*/
/*IE六、七、8識別*/
+/*IE六、7識別*/
_/*IE6識別*/
}
.bb, x:-moz-any-link, x:default{}/*IE7 firefox3.5及如下 識別 */
@-moz-document url-prefix(){.bb{}}/* 僅firefox 識別 */
* +html .bb{}/* 僅IE7 識別 */
/*一個用於展現的class爲bb的div標籤*/
< div class ="bb"></ div >
Hack應用情境(三)
適用範圍:IE:6.0,IE7.0,IE8.0,Firefox,Safari(Chrome)之間的兼容
實例說明:
實例代碼:
.bb{
height:32px;
/*全部識別*/
/*IE六、七、8識別*/
+/*IE六、7識別*/
_/*IE6識別*/
}
@media screen and (-webkit-min-device-pixel-ratio:0){.bb{/*safari(Chrome) 有效 */
.bb, x:-moz-any-link, x:default{}/*IE7 firefox3.5及如下 識別 */
@-moz-document url-prefix(){.bb{}}/*僅firefox 識別*/
* +html .bb{}/* 僅IE7 識別 */
/*一個用於展現的class爲bb的div標籤*/
< div class ="bb"></ div >
Hack應用情境(四)
適用範圍:IE:6.0+,FireFox:2.0+,Opera 10.0+,Sarari 3.0+,Chrome全兼容
實例說明:
實例代碼:
<!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">/***************************************** 各遊覽器兼容CSS **********************************************/
.bb{height:32px;/*全部識別*/ /*IE六、七、8識別*/ +/*IE六、7識別*/ _">/*IE6識別*/}
@media screen and (-webkit-min-device-pixel-ratio:0){.bb{background-color:#f1ee18}}{} /* Safari(Chrome) 有效 */
@media all and (min-width: 0px){ .bb{/*opera and Safari(Chrome) and firefox*/ }/* 僅 Opera 有效 */ }{}
.bb, x:-moz-any-link, x:default{/*IE七、Firefox3.5及如下 識別 */}
@-moz-document url-prefix(){.bb{/*僅 Firefox 識別 */}}
* +html .bb{}/* 僅IE7 識別 */
/* 通常狀況下 咱們區分IE7 只用 +background-color 配合 _background-color 就好了 若是必須寫 .bb, x:-moz-any-link, x:default 這樣的代碼區分 Firefox3.5及如下 則謹記此寫法對IE7也有效,故在其中要再重寫一次 +background-color 或者使用 * +html .bb{} 方法僅對 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{
.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\0;} /* 僅 Opera 有效 */ }{}
<!--[if IE 8]>IE8的辨別色是藍色,新版IE8的功能但是很多呢。<![endif]-->
<!--[if IE 7]>IE7的辨別色是紫色,IE7還能夠湊合着用!<![endif]-->
<!--[if IE 6]>IE6的辨別色是紅色,不過,IE6但是有點落後了!<![endif]-->