I want to load a css
file only for IE11 browser. How can I do it?
I understand that I can use conditional comments
to load stylesheet's for IE <=9. But not for IE 10 & 11.
I could Google and find an alternative as below :
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
}
But, it loads for both IE10 and IE11 browsers. I want to load stylesheet only for IE11. Is it possible?
Thanks