/* IE6/7 uses media, */
@media, {
.container { color: green; }
.item { color: red; }
}
/* IE8 uses \0 */
@media all\0 {
.container { color: brown; }
.item { color: orange; }}
/* IE9 uses \9 */
@media all and (monochrome:0) {
.container { color: yellow\9; } .
.item { color: blue\9; }}
/* IE10 and IE11 both use -ms-high-contrast */
@media all and (-ms-high-contrast:none)
{
.foo { color: green } /* IE10 */
*::-ms-backdrop, .foo { color: red } /* IE11 */
}
No comments:
Post a Comment