CSS Hacks for IE6,IE7,IE8,IE9 and IE10
Here are the newest CSS hacks for IE all versions, compatible with Firefox and Chrome.
#hack{ |
| 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*/ |
| } |
Comments
Post a Comment