Skip to content

Instantly share code, notes, and snippets.

@yomotsu
Created March 1, 2016 03:37
Show Gist options
  • Save yomotsu/4acd5c5475fad6151afd to your computer and use it in GitHub Desktop.
Save yomotsu/4acd5c5475fad6151afd to your computer and use it in GitHub Desktop.
Edge CSS hack
div{
color:red;
}
@supports ( -ms-accelerator:true ) {
/*only for edge*/
div{
color:blue;
}
}
@Holysu
Copy link

Holysu commented May 11, 2018

Don't work at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment