Skip to content

Instantly share code, notes, and snippets.

@jomurgel
Created April 19, 2019 18:13
Show Gist options
  • Save jomurgel/2ebbac559bacf979f7ed19f5b25a7768 to your computer and use it in GitHub Desktop.
Save jomurgel/2ebbac559bacf979f7ed19f5b25a7768 to your computer and use it in GitHub Desktop.
SVG IE TabIndex Fixes
// Add aria-hidden="true" and focusable="false" (due to an IE bug) instead of (or in addition to) setting a negative tabindex.
<svg tabindex="-1" viewBox="0 0 512 512" aria-hidden="true" focusable="false">
<path d="">
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment