DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> 浏覽器特定的CSS Hacks匯總
浏覽器特定的CSS Hacks匯總
編輯:CSS詳解     
CSS hacks利用浏覽器的漏洞來隱藏特定浏覽器的CSS規則。實現浏覽器兼容主要有兩種方式條件樣式表和CSS Hacks(Selector Hacks、Attribute Hacks)。對此根據一些資料匯總了一些CSS Hacks方法。

我不再使用CSS Hacks了,相反的是,我將使用IE的條件判斷將類應用到body標簽。

但是,我想記錄我之前碰到過的每一個浏覽器特定的CSS 選擇器和樣式屬性。我相信也沒有其他方式提供樣式表給獨特的Safari.

利用這些CSS Hacks,你能夠更好的針對IE、Chrome、Firefox、Opera和Safari,代碼如下:

浏覽器特定的CSS Hacks綜合列表:


復制代碼代碼如下:
/***** Selector Hacks ******/
/* IE6 and below */
* Html #uno { color: red }
/* IE7 */
*:first-child+Html #DOS { color: red }
/* IE7, FF, Saf, Opera */
Html>body #tres { color: red }
/* IE8, FF, Saf, Opera (Everything but IE 6,7) */
Html>/**/body #cuatro { color: red }
/* Opera 9.27 and below, safari 2 */
Html:first-child #cinco { color: red }
/* Safari 2-3 */
Html[XMLns*=""] body:last-child #seis { color: red }
/* safari 3+, Chrome 1+, Opera9+, ff 3.5+ */
body:nth-of-type(1) #sIEte { color: red }
/* safari 3+, Chrome 1+, Opera9+, ff 3.5+ */
body:first-of-type #ocho { color: red }
/* saf3+, Chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#dIEz { color: red }
}
/* iPhone / mobile webkit */
@media screen and (max-device-width: 480px) {
#veintiseis { color: red }
}
/* Safari 2 - 3.1 */
Html[XMLns*=""]:root #trece { color: red }
/* Safari 2 - 3.1, Opera 9.25 */
*|Html[XMLns*=""] #catorce { color: red }
/* Everything but IE6-8 */
root *> #quince { color: red }
/* IE7 */
*+Html #dIEciocho { color: red }
/* IE 10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#veintiun { color: red; }
}
/* Firefox only. 1+ */
#veinticuatro, x:-moz-any-link { color: red }
/* Firefox 3.0+ */
#veinticinco, x:-moz-any-link, x:default { color: red }
/* FF 3.5+ */
body:not(:-moz-handler-blocked) #cuarenta { color: red; }
/***** Attribute Hacks ******/
/* IE6 */
#once { _color: blue }
/* IE6, IE7 */
#doce { *color: blue; /* or #color: blue */ }
/* Everything but IE6 */
#diecisIEte { color/**/: blue }
/* IE6, IE7, IE8, but also IE9 in some cases */
#dIEcinueve { color: blue\9; }
/* IE7, IE8 */
#veinte { color/*\**/: blue\9; }
/* IE6, IE7 -- acts as an !important */
#veintesiete { color: blue !IE; } /* string after ! can be anything */
/* IE8, IE9 */
#anotherone {color: blue\0/;} /* must go at the END of all rules */
/* IE9, IE10 */
@media screen and (min-width:0\0) {
#veintiDOS { color: red}
}

1.條件樣式表

像這樣的代碼你應該見過:


復制代碼代碼如下:
<link rel="stylesheet" type="text/css" href="css/style.CSS" />
<!--[if IE]>
<link rel="stylesheet" type="text/css"href="css/IE.CSS" />
< ![endif]-->

PS:yahoo的內部編碼最佳做法並不建議使用有條件的樣式表。它會增加額外的平均1或2個HTTP下載請求(參考這裡)。

2.選擇器Hacks(Selector Hacks)


復制代碼代碼如下:
/* IE6 及以下 */
* Html #uno { color: red }

/* IE7 */
*:first-child+Html #DOS { color: red }

/* IE7, FF, Saf, Opera */
Html>body #tres { color: red }

/* IE8, FF, Saf, Opera (IE 6,7以外) */
Html>/**/body #cuatro { color: red }

/* Opera 9.27 及以下, safari 2 */
Html:first-child #cinco { color: red }

/* Safari 2-3 */
Html[XMLns*=""] body:last-child #seis { color: red }

/* safari 3+, Chrome 1+, Opera9+, ff 3.5+ */
body:nth-of-type(1) #sIEte { color: red }

/* safari 3+, Chrome 1+, Opera9+, ff 3.5+ */
body:first-of-type #ocho { color: red }

/* saf3+, Chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#dIEz { color: red }
}

/* iPhone / mobile webkit */
@media screen and (max-device-width: 480px) {
#veintiseis { color: red }
}</p>< p>/* Safari 2 - 3.1 */
Html[XMLns*=""]:root #trece { color: red }

/* Safari 2 - 3.1, Opera 9.25 */
*|Html[XMLns*=""] #catorce { color: red }

/* IE6-8以外 */
:root *> #quince { color: red }

/* IE7 */
*+Html #dIEciocho { color: red }

/* Firefox only. 1+ */
#veinticuatro, x:-moz-any-link { color: red }

/* Firefox 3.0+ */
#veinticinco, x:-moz-any-link, x:default { color: red }

PS:選擇器Hacks方式比較多, 但只要代碼寫得夠標准, 其實要 Hack 的地方不會很多的, 除了有時候IE搗亂,IE 以外的浏覽器幾乎都不會有問題。

3.屬性hacks(Attribute Hacks)


復制代碼代碼如下:
/* IE6 */
#once { _color: blue }

/* IE6, IE7 */
#doce { *color: blue; /* 或 #color: blue */ }

/* IE6以外 */
#diecisIEte { color/**/: blue }

/* IE6, IE7, IE8 */
#dIEcinueve { color: blue\9; }

/* IE7, IE8 */
#veinte { color/*\**/: blue\9; }</p>< p>/* 僅IE8 */
#veinte { color: blue\0; }

PS:屬性Hacks混寫是我較多使用的一種方式,感覺寫起來比較簡單。CSS Hacks的使用大多情況下是為了兼顧一下愛搗亂的IE,使用Attribute Hacks基本上能解決對IE的兼容。
4.屬性hacks混寫


復制代碼代碼如下:
/* !important優先 */
#bgcolor {
background:red !important; /* Firefox 等其他浏覽器 */
background:blue; /* IE6 */
}</p>< p>#test {
background-color: black; /* Firefox, Opera, IE8 */
[;background-color: green;] /* Safari, Chrome */
*background-color: blue; /* IE7 */
_background-color: red; /* IE6 */
}

PS:屬性hacks混寫要注意書寫次序。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved