1@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
2 #myElement {
3 /* Enter your style code */
4 }
5}
1 @media all and (-ms-high-contrast:none)
2 {
3 .foo { color: green } /* IE10 */
4 *::-ms-backdrop, .foo { color: red } /* IE11 */
5 }