Avenir | Drupal Development | Joomla Development | Magento Development | OsCommerce Development

Wednesday, 23 March 2011

CSS Hacks for IE6, IE7, IE8

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

No comments:

Post a Comment