Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save carloscabo/93a7903eeadf5416f2207516baa469d1 to your computer and use it in GitHub Desktop.
Save carloscabo/93a7903eeadf5416f2207516baa469d1 to your computer and use it in GitHub Desktop.
Sass mixing for IE10-11
@mixin ie() {
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment