Skip to content

Instantly share code, notes, and snippets.

@jsakhil
Created January 17, 2020 13:43
Show Gist options
  • Save jsakhil/a24301037bd73b94af4b8c70dad33ee0 to your computer and use it in GitHub Desktop.
Save jsakhil/a24301037bd73b94af4b8c70dad33ee0 to your computer and use it in GitHub Desktop.
Internet Explorer 10 & 11 and Microsoft Edge 12 Only styles
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#myElement {
/* IE10+ CSS styles go here */
}
}
@supports (-ms-accelerator:true) {
#myElement {
/* IE Edge 12+ CSS styles goes here */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment