Skip to content

Instantly share code, notes, and snippets.

@druellan
Created May 18, 2017 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save druellan/61f0b7ecbd49e63649addb904eb953d0 to your computer and use it in GitHub Desktop.
Save druellan/61f0b7ecbd49e63649addb904eb953d0 to your computer and use it in GitHub Desktop.
HTML5 Picture Element
<picture>
<source srcset='large.webp' media='(min-width: 992px)' type='image/webp'>
<source srcset='large.jpg' media='(min-width: 992px)' type='image/jpeg'>
<img src='small.jpg' alt=''>
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment