CSS targetting for IE 10+ excluding Edge
9 years ago, February 15, 2016
Reading time: 1 mins
Use the following media query to target your css particularly for IE10+ browsers
@media all and (min-width: 64em) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
}