/ Published in: CSS
URL: http://paulirish.com/2009/browser-specific-css-hacks/
Expand |
Embed | Plain Text
/*IE8 Standards-Mode Only:*/ .test { color /*\**/: blue\9 } /*All IE versions, including IE8 Standards Mode:*/ .test { color: blue\9 } /* IE6 and below */ * html #el-id { color: red } /* IE7 */ *:first-child+html #el-id { color: red } /* IE7, FF, Saf, Opera */ html>body #el-id { color: red } /* IE8, FF, Saf, Opera (Everything but IE 6,7) */ html>/**/body #el-id { color: red } /* Opera 9.27 and below, safari 2 */ html:first-child #el-id { color: red } /* Safari 2-3 */ html[xmlns*=""] body:last-child #el-id { color: red } /* safari 3+, chrome 1+, opera9+, ff 3.5+ */ body:nth-of-type(1) #el-id { color: red } /* safari 3+, chrome 1+, opera9+, ff 3.5+ */ body:first-of-type #el-id { color: red } /*----------------------------------------------------------------------------------------------------------------------------------*/ /* saf3+, chrome1+ */ @media screen and (-webkit-min-device-pixel-ratio:0) { #el-id { color: red } } /* iPhone / mobile webkit */ @media screen and (max-device-width: 480px) { #el-id { color: red } } /* Safari 2 - 3.1 */ html[xmlns*=""]:root #el-id { color: red } /* Safari 2 - 3.1, Opera 9.25 */ *|html[xmlns*=""] #el-id { color: red } /* Everything but IE6-8 */ :root *> #el-id { color: red } /* IE7 */ *+html #el-id { color: red } /* Firefox only. 1+ */ #el-id, x:-moz-any-link { color: red } /* Firefox 3.0+ */ #el-id, x:-moz-any-link, x:default { color: red } /* FF 3.5+ */ body:not(:-moz-handler-blocked) #el-id { color: red; } /***** Attribute Hacks ******/ /* IE6 */ #el-id { _color: blue } /* IE6, IE7 */ #el-id { *color: blue; /* or #el-id: blue */ } /* Everything but IE6 */ #el-id { color/**/: blue } /* IE6, IE7, IE8 */ #el-id { color: blue\9; } /* IE7, IE8 */ #el-id { color/*\**/: blue\9; } /* IE6, IE7 -- acts as an !important */ #el-id { color: blue !ie; } /* string after ! can be anything */ /* IE8, IE9 */ #el-id {color: blue\0/;} /* must go at the END of all rules */ /*----------------------------------------------------------------------------------------------------------------------------------*/ /*IE 6 and below*/ * html {} /*IE 7 and below*/ *:first-child+html {} * html {} /*IE 7 only*/ *:first-child+html {} /*IE 7 and modern browsers only*/ html>body {} /*Modern browsers only (not IE 7)*/ html>/**/body {} /*Recent Opera versions 9 and below*/ html:first-child {}
You need to login to post a comment.
