Created
June 8, 2016 15:01
-
-
Save dreamyguy/7b1289da45efc886fded1bdeff819489 to your computer and use it in GitHub Desktop.
IE conditions for IE10-11 & MSEdge (IE12+)
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 all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
| // IE10+ styles go here | |
| top: rem-calc(3); | |
| } | |
| // Reset styles for MSEdge, which usually works as well as Chrome | |
| @supports (-ms-accelerator:true) { | |
| // IEEdge 12+ styles go here | |
| top: rem-calc(10); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment