Skip to content

Instantly share code, notes, and snippets.

@06b
Created February 9, 2015 17:26
Show Gist options
  • Save 06b/f67437cb86afc79e6fe3 to your computer and use it in GitHub Desktop.
Save 06b/f67437cb86afc79e6fe3 to your computer and use it in GitHub Desktop.
IE10 CSS Hack since IE10 no longer supports conditional comments - Sadly I needed to use this in 2015.
if (/*@cc_on!@*/false && document.documentMode === 10) {
document.documentElement.className+=' ie10';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment