Created
February 9, 2015 17:26
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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