CSSハック一覧

2010年07月27日

CSSハックの一覧

  • IE6以下用
* html #hack { background-color: #ccccff; }
  • IE6、IE7用
#hack { /background-color: #ccccff; }
  • IE6のみ除外
#hack { background-color /**/:#ccccff;}
  • IE8用
html>/**/body #hack { background-color: #ccccff; }
  • Firefox1.5,2.0以降
.huck, x:-moz-read-only { background-color: #ccccff; }
  • Firefox3.0 以降
.huck, x:-moz-broken { background-color: #ccccff; }
  • Firefox3.5 以降
.huck, x:-moz-broken, x:last-of-type { background-color: #ccccff; }
  • Safari3用
body:first-of-type #hack { background-color: #ccccff; }
  • Safari2用
html:\66irst-child #hack { background-color: #ccccff; }
pageTop
>