Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created October 9, 2014 01:26
Show Gist options
  • Save RyoSugimoto/0892cb12012703feb015 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/0892cb12012703feb015 to your computer and use it in GitHub Desktop.
IE用のCSSハック集。
/* IE6 以下 */
* html .selector {}
.selector { _color: #FFF; }
/* IE7 */
*:first-child+html .selector {}
*+html .selector {}
/* IE6, 7 */
.selector { /color: #FFF; }
/* IE8 */
.selector { color: #FFF\9; }
/* IE7, 8 */
.selector { color/*\**/: #FFF\9; }
/* except IE6 */
.selector { color/**/: #FFF; }
/* except IE6, 7 */
html>/**/body .selector { color: #FFF; }
/* except IE6 - 8 */
:root *> .selector { color: #FFF; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment