Skip to content

Instantly share code, notes, and snippets.

@snarf1974
snarf1974 / target-metro.scss
Last active July 8, 2020 08:51 — forked from tcrammond/target-metro.scss
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) {