Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created August 21, 2012 01:15
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 bjankord/3410238 to your computer and use it in GitHub Desktop.
Save bjankord/3410238 to your computer and use it in GitHub Desktop.
Picture element type attribute example
<picture alt="">
<!-- If browser supports WebP, use image below: -->
<source src="fullsize.webp" type="image/webp">
<!-- Else, use image from which ever source tag currently matches -->
<source src="mobile.jpg">
<source src="medium.jpg" media="min-width: 600px">
<source src="fullsize.jpg" media="min-width: 900px">
<img src="mobile.jpg">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment