> 웹 프론트엔드 > 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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿