Last active
November 30, 2017 08:55
-
-
Save Koniksan/495ec435343e233db24b5803d252b21e to your computer and use it in GitHub Desktop.
Definition of Edge or Internet Explorer Browser , 2 solutions.
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), screen and (-ms-high-contrast: none) { | |
| ... | |
| } |
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 (document.documentMode || /Edge/.test(navigator.userAgent)) { | |
| ... do something | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment