首頁 > web前端 > html教學 > 浏览器的CSS Hacks_html/css_WEB-ITnose

浏览器的CSS Hacks_html/css_WEB-ITnose

WBOY
發布: 2016-06-24 11:58:33
原創
1154 人瀏覽過

LZ注:此文原作者是:Paul Irish(Google的前端开发工程师),本文是原文的部分译文.

我不再使用CSS Hacks了,相反的是,我将使用IE的条件判断将类应用到body标签。

 

但是,我想记录我之前碰到过的每一个浏览器特定的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

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板