Posts

Showing posts with the label browser specific hack code

Browser Specific CSS Hack Codes

CSS Hacks for IE6,IE7,IE8,IE9 and IE10 #csszilla { color:red; /* All browsers */ color:red !important;/* All browsers but IE6 */ _color:red; /* Only works in IE6 */ *color:red; /* IE6, IE7 */ +color:red;/* Only works in IE7*/ *+color:red; /* Only works in IE7 */ color:red\9; /* IE6, IE7, IE8, IE9 */ color:red\0; /* IE8, IE9 */ color:red\9\0;/*Only works in IE9*/ } ============================================================================================================== CSS Hacks for Mozilla Firefox  Firefox 2 html>/**/body .selector, x:-moz-any-link {   color:lime; } Firefox  3 html>/**/body .selector, x:-moz-any-link, x:default {   color:lime; } Any Firefox @-moz-document url-prefix() {    .selector {      color:lime;   } } ============================================================================================================== CSS Hacks for ...