Skip to content

Instantly share code, notes, and snippets.

@samueleiche
Last active December 6, 2019 20:37
Show Gist options
  • Save samueleiche/aa69b0b2e50243cc591b415989309faf to your computer and use it in GitHub Desktop.
Save samueleiche/aa69b0b2e50243cc591b415989309faf to your computer and use it in GitHub Desktop.
Detect if Internet Explorer in CSS and JS.
// if IE10+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
// IE styles...
}
(function() {
/* Detect if user is using any MS Internet Explorer version */
if (/Trident|MSIE/.test(navigator.userAgent)) document.body.className += ' msie';
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment