最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

瀏覽器的CSSHacks_html/css_WEB-ITnose

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 15:55:15
文檔

瀏覽器的CSSHacks_html/css_WEB-ITnose

瀏覽器的CSSHacks_html/css_WEB-ITnose:LZ注:此文原作者是:Paul Irish(Google的前端開發(fā)工程師),本文是原文的部分譯文. 我不再使用CSS Hacks了,相反的是,我將使用IE的條件判斷將類應(yīng)用到body標(biāo)簽。 但是,我想記錄我之前碰到過的每一個瀏覽器特定的CSS 選擇器和樣式屬性。我相信也沒
推薦度:
導(dǎo)讀瀏覽器的CSSHacks_html/css_WEB-ITnose:LZ注:此文原作者是:Paul Irish(Google的前端開發(fā)工程師),本文是原文的部分譯文. 我不再使用CSS Hacks了,相反的是,我將使用IE的條件判斷將類應(yīng)用到body標(biāo)簽。 但是,我想記錄我之前碰到過的每一個瀏覽器特定的CSS 選擇器和樣式屬性。我相信也沒

LZ注:此文原作者是:Paul Irish(Google的前端開發(fā)工程師),本文是原文的部分譯文.

我不再使用CSS Hacks了,相反的是,我將使用IE的條件判斷將類應(yīng)用到body標(biāo)簽。

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

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

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

 1: 
 2: /***** Selector Hacks ******/
 3: 
 4: /* IE6 and below */
 5: * html #uno { color: red }
 6: 
 7: /* IE7 */
 8: *:first-child+html #dos { color: red }
 9: 
 10: /* IE7, FF, Saf, Opera */
 11: html>body #tres { color: red }
 12: 
 13: /* IE8, FF, Saf, Opera (Everything but IE 6,7) */
 14: html>/**/body #cuatro { color: red }
 15: 
 16: /* Opera 9.27 and below, safari 2 */
 17: html:first-child #cinco { color: red }
 18: 
 19: /* Safari 2-3 */
 20: html[xmlns*=""] body:last-child #seis { color: red }
 21: 
 22: /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
 23: body:nth-of-type(1) #siete { color: red }
 24: 
 25: /* safari 3+, chrome 1+, opera9+, ff 3.5+ */
 26: body:first-of-type #ocho { color: red }
 27: 
 28: /* saf3+, chrome1+ */
 29: @media screen and (-webkit-min-device-pixel-ratio:0) {
 30: #diez { color: red }
 31: }
 32: 
 33: /* iPhone / mobile webkit */
 34: @media screen and (max-device-width: 480px) {
 35: #veintiseis { color: red }
 36: }
 37: 
 38: 
 39: /* Safari 2 - 3.1 */
 40: html[xmlns*=""]:root #trece { color: red }
 41: 
 42: /* Safari 2 - 3.1, Opera 9.25 */
 43: *|html[xmlns*=""] #catorce { color: red }
 44: 
 45: /* Everything but IE6-8 */
 46: :root *> #quince { color: red }
 47: 
 48: /* IE7 */
 49: *+html #dieciocho { color: red }
 50: 
 51: /* IE 10+ */
 52: @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
 53: #veintiun { color: red; }
 54: }
 55: 
 56: /* Firefox only. 1+ */
 57: #veinticuatro, x:-moz-any-link { color: red }
 58: 
 59: /* Firefox 3.0+ */
 60: #veinticinco, x:-moz-any-link, x:default { color: red }
 61: 
 62: /* FF 3.5+ */
 63: body:not(:-moz-handler-blocked) #cuarenta { color: red; }
 64: 
 65: 
 66: /***** Attribute Hacks ******/
 67: 
 68: /* IE6 */
 69: #once { _color: blue }
 70: 
 71: /* IE6, IE7 */
 72: #doce { *color: blue; /* or #color: blue */ }
 73: 
 74: /* Everything but IE6 */
 75: #diecisiete { color/**/: blue }
 76: 
 77: /* IE6, IE7, IE8, but also IE9 in some cases :( */
 78: #diecinueve { color: blue\9; }
 79: 
 80: /* IE7, IE8 */
 81: #veinte { color/*\**/: blue\9; }
 82: 
 83: /* IE6, IE7 -- acts as an !important */
 84: #veintesiete { color: blue !ie; } /* string after ! can be anything */
 85: 
 86: /* IE8, IE9 */
 87: #anotherone {color: blue\0/;} /* must go at the END of all rules */
 88: 
 89: /* IE9, IE10 */
 90: @media screen and (min-width:0\0) {
 91: #veintidos { color: red}
 92: }

來源:http://www.ido321.com/509.html

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

瀏覽器的CSSHacks_html/css_WEB-ITnose

瀏覽器的CSSHacks_html/css_WEB-ITnose:LZ注:此文原作者是:Paul Irish(Google的前端開發(fā)工程師),本文是原文的部分譯文. 我不再使用CSS Hacks了,相反的是,我將使用IE的條件判斷將類應(yīng)用到body標(biāo)簽。 但是,我想記錄我之前碰到過的每一個瀏覽器特定的CSS 選擇器和樣式屬性。我相信也沒
推薦度:
標(biāo)簽: 瀏覽器 瀏覽器的 html
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top