Skip to content

Instantly share code, notes, and snippets.

@CapWebSolutions
Created June 26, 2018 19:06
Show Gist options
  • Select an option

  • Save CapWebSolutions/aaf1f4c4dff943814791c7ec06a0c519 to your computer and use it in GitHub Desktop.

Select an option

Save CapWebSolutions/aaf1f4c4dff943814791c7ec06a0c519 to your computer and use it in GitHub Desktop.
IE 10/11 displays outline on any clicked div. This css snippet removes that outline.
/* Added to remove outline on any clicked div when displyed in IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
:focus {
outline: none;
}
}
@CapWebSolutions
Copy link
Copy Markdown
Author

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