Skip to content

Instantly share code, notes, and snippets.

@mattonik
Forked from tcrammond/target-metro.scss
Created October 2, 2020 13:50
Show Gist options
  • Save mattonik/fd79f04b6907e1ca572f44ef4a0004a1 to your computer and use it in GitHub Desktop.
Save mattonik/fd79f04b6907e1ca572f44ef4a0004a1 to your computer and use it in GitHub Desktop.
A sass mixin to write css that targets only IE 10 and IE 11
// Thanks http://philipnewcomer.net/2014/04/target-internet-explorer-10-11-css/
/*
Usage:
@include target-metro {
color: cyan;
}
*/
@mixin target-metro {
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment