Skip to content

Instantly share code, notes, and snippets.

@thebeckyhamm
Last active January 1, 2017 19:40
Show Gist options
  • Save thebeckyhamm/41b96a30a912cfd6416f to your computer and use it in GitHub Desktop.
Save thebeckyhamm/41b96a30a912cfd6416f to your computer and use it in GitHub Desktop.
svg with fallback using picture element. Don't use until better supported/or use picturefill
<picture>
<source type="image/svg+xml" srcset="path/to/image.svg">
<img src="path/to/fallback.png" alt="Image description">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment