Archive for July, 2017

Targeting IE 10 and 11 only

There are no more conditional selectors like we used to have in the past for IE6-9.

<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->

To target Internet Explorer 10 & 11 browsers, you will need to use this format:

/* START IE10/11 ONLY */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

[CSS GOES HERE]

/* END IE ONLY */
}