Created
January 17, 2020 13:43
-
-
Save jsakhil/a24301037bd73b94af4b8c70dad33ee0 to your computer and use it in GitHub Desktop.
Internet Explorer 10 & 11 and Microsoft Edge 12 Only styles
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
@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