CSS hack for Internet Explorer 6
* html .ClrButton {color: #C39;}
CSS hack for Internet Explorer 7
*:first-child+html .ClrButton {color: #66F;}
Or a shorter version:
*+html .ClrButton {color: #66F;}
CSS hack for Internet Explorer 8
.ClrButton {color: #0FC\0/;}
Examples
.ClrButton {color: #777;} /* for all browsers */
* html .ClrButton {color: #C39;} /* for IE6 */
*+html .ClrButton {color: #66F;} /* for IE7 */
.ClrButton {color: #0FC\0/;} /* for IE8, going last */
By Avenir Team
CSS hack for Internet Explorer 7
*:first-child+html .ClrButton {color: #66F;}
Or a shorter version:
*+html .ClrButton {color: #66F;}
CSS hack for Internet Explorer 8
.ClrButton {color: #0FC\0/;}
Examples
.ClrButton {color: #777;} /* for all browsers */
* html .ClrButton {color: #C39;} /* for IE6 */
*+html .ClrButton {color: #66F;} /* for IE7 */
.ClrButton {color: #0FC\0/;} /* for IE8, going last */
By Avenir Team
No comments:
Post a Comment