Skip to content

Instantly share code, notes, and snippets.

@NataliaAvila
Last active January 22, 2019 13:09
Show Gist options
  • Save NataliaAvila/ddddad85024355e9516faa89d72fb27b to your computer and use it in GitHub Desktop.
Save NataliaAvila/ddddad85024355e9516faa89d72fb27b to your computer and use it in GitHub Desktop.
Mixin para IE
@mixin ie() {
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}
.className {
display: inline-block;
@include ie() {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment